RCS file: /cvsroot/boost/boost/configure,v
retrieving revision 1.11
diff -u -r1.11 configure
|
|
|
185 | 185 | |
186 | 186 | # Determine the toolset, if not already decided |
187 | 187 | if test "x$TOOLSET" = x; then |
188 | | TOOLSET=`$my_dir/tools/jam/src/build.sh --guess-toolset` |
| 188 | guessed_toolset=`$my_dir/tools/jam/src/build.sh --guess-toolset` |
| 189 | case $guessed_toolset in |
| 190 | acc | darwin | gcc | como | mipspro | pathscale | pgi | qcc | vacpp ) |
| 191 | TOOLSET=$guessed_toolset |
| 192 | ;; |
| 193 | |
| 194 | intel-* ) |
| 195 | TOOLSET=intel |
| 196 | ;; |
| 197 | |
| 198 | mingw ) |
| 199 | TOOLSET=gcc |
| 200 | ;; |
| 201 | |
| 202 | sun* ) |
| 203 | TOOLSET=sun |
| 204 | ;; |
| 205 | |
| 206 | * ) |
| 207 | # Not supported by Boost.Build |
| 208 | ;; |
| 209 | esac |
189 | 210 | fi |
190 | 211 | |
191 | 212 | rm -f config.log |