mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 05:25:00 +00:00
Merged improvements to autoconf-like configure script
[SVN r44894]
This commit is contained in:
parent
6bb6b2e4d5
commit
2b9120b6b5
1 changed files with 22 additions and 1 deletions
23
configure
vendored
23
configure
vendored
|
@ -185,7 +185,28 @@ my_dir="."
|
|||
|
||||
# Determine the toolset, if not already decided
|
||||
if test "x$TOOLSET" = x; then
|
||||
TOOLSET=`$my_dir/tools/jam/src/build.sh --guess-toolset`
|
||||
guessed_toolset=`$my_dir/tools/jam/src/build.sh --guess-toolset`
|
||||
case $guessed_toolset in
|
||||
acc | darwin | gcc | como | mipspro | pathscale | pgi | qcc | vacpp )
|
||||
TOOLSET=$guessed_toolset
|
||||
;;
|
||||
|
||||
intel-* )
|
||||
TOOLSET=intel
|
||||
;;
|
||||
|
||||
mingw )
|
||||
TOOLSET=gcc
|
||||
;;
|
||||
|
||||
sun* )
|
||||
TOOLSET=sun
|
||||
;;
|
||||
|
||||
* )
|
||||
# Not supported by Boost.Build
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
rm -f config.log
|
||||
|
|
Loading…
Add table
Reference in a new issue