2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-19 04:02:14 +00:00

Fix test build with correct toolset.

This commit is contained in:
Rene Rivera
2020-04-01 08:47:13 -05:00
parent ff17b133c1
commit ac2c8d6b27
2 changed files with 4 additions and 4 deletions

View File

@@ -60,5 +60,5 @@ for:
echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> BOOTSTRAP"
echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
bootstrap.bat
bootstrap.bat %TOOLSET%
b2.exe --debug-configuration --prefix=./.b2 install toolset=%TEST_TOOLSET%

View File

@@ -170,7 +170,7 @@ stages:
set -e
CXX_PATH=`which ${CXX}`
echo "using ${TEST_TOOLSET} : : ${CXX_PATH} ;" > ${HOME}/user-config.jam
./bootstrap.sh --with-toolset=${TOOLSET}
./bootstrap.sh ${TOOLSET}
./b2 --prefix=./.b2 install ${TEST_TOOLSET}
displayName: Bootstrap
@@ -216,7 +216,7 @@ stages:
$env:HOME = $env:HOMEDRIVE + $env:HOMEPATH
$env:path += ';' + $env:CXX_PATH
echo "using" $env:TEST_TOOLSET ":" ":" $env:CXX ";" > $env:HOME/user-config.jam
./bootstrap.bat
./bootstrap.bat $env:TOOLSET
./b2.exe --debug-configuration --prefix=./.b2 install toolset=$env:TEST_TOOLSET
displayName: Bootstrap
@@ -317,7 +317,7 @@ stages:
set -e
CXX_PATH=`which ${CXX}`
echo "using ${TEST_TOOLSET} : : ${CXX_PATH} ;" > ${HOME}/user-config.jam
./bootstrap.sh --with-toolset=${TOOLSET}
./bootstrap.sh ${TOOLSET}
./b2 --prefix=./.b2 install ${TEST_TOOLSET}
displayName: Bootstrap