Skip to content
Snippets Groups Projects
Commit 9c8d1bcf authored by Martin Beseda's avatar Martin Beseda
Browse files

ENH: Boost compilation will end after first error.

parent 38fb73f2
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ echo "Building '${CYAN}BOOST${NC}' for ${WHITE}Debug${NC}(${LINK_TYPE})" ...@@ -11,7 +11,7 @@ echo "Building '${CYAN}BOOST${NC}' for ${WHITE}Debug${NC}(${LINK_TYPE})"
cd ../../external_dependencies/boost cd ../../external_dependencies/boost
./b2 cxxflags="-fPIC" --layout=system variant=debug link=${LINK_TYPE} address-model=64 --with-system --with-serialization --with-random ./b2 -q cxxflags="-fPIC" --layout=system variant=debug link=${LINK_TYPE} address-model=64 --with-system --with-serialization --with-random
cd ../../build_scripts/linux cd ../../build_scripts/linux
...@@ -90,7 +90,7 @@ IF "%REBUILD_BOOST%"=="yes" ( ...@@ -90,7 +90,7 @@ IF "%REBUILD_BOOST%"=="yes" (
cd external_dependencies\boost cd external_dependencies\boost
.\b2 --layout=system variant=debug link=%LINK_TYPE% address-model=64 --with-system --with-serialization --with-random || goto error_occured_boost .\b2 -q --layout=system variant=debug link=%LINK_TYPE% address-model=64 --with-system --with-serialization --with-random || goto error_occured_boost
cd ..\..\build_scripts\windows cd ..\..\build_scripts\windows
) )
......
...@@ -90,7 +90,7 @@ IF "%REBUILD_BOOST%"=="yes" ( ...@@ -90,7 +90,7 @@ IF "%REBUILD_BOOST%"=="yes" (
cd external_dependencies\boost cd external_dependencies\boost
.\b2 --layout=system variant=release link=%LINK_TYPE% address-model=64 --with-system --with-serialization --with-random || goto error_occured_boost .\b2 -q --layout=system variant=release link=%LINK_TYPE% address-model=64 --with-system --with-serialization --with-random || goto error_occured_boost
cd ..\..\build_scripts\windows cd ..\..\build_scripts\windows
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment