From 9c8d1bcf3e313e3f3358e02bd34ce64c3a7fe17c Mon Sep 17 00:00:00 2001
From: Martin Beseda <martin.beseda@vsb.cz>
Date: Thu, 10 Jan 2019 22:26:51 +0100
Subject: [PATCH] ENH: Boost compilation will end after first error.

---
 build_scripts/linux/build_boost_gcc.sh             | 2 +-
 build_scripts/windows/win_VS_build_x64_debug.bat   | 2 +-
 build_scripts/windows/win_VS_build_x64_release.bat | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/build_scripts/linux/build_boost_gcc.sh b/build_scripts/linux/build_boost_gcc.sh
index 37f4fc72..7f1cc618 100755
--- a/build_scripts/linux/build_boost_gcc.sh
+++ b/build_scripts/linux/build_boost_gcc.sh
@@ -11,7 +11,7 @@ echo "Building '${CYAN}BOOST${NC}' for ${WHITE}Debug${NC}(${LINK_TYPE})"
 
 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
 
diff --git a/build_scripts/windows/win_VS_build_x64_debug.bat b/build_scripts/windows/win_VS_build_x64_debug.bat
index 86c3b1e3..67fa0593 100644
--- a/build_scripts/windows/win_VS_build_x64_debug.bat
+++ b/build_scripts/windows/win_VS_build_x64_debug.bat
@@ -90,7 +90,7 @@ IF "%REBUILD_BOOST%"=="yes" (
 
 	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
 )
diff --git a/build_scripts/windows/win_VS_build_x64_release.bat b/build_scripts/windows/win_VS_build_x64_release.bat
index c4c8aaac..c11d60d3 100644
--- a/build_scripts/windows/win_VS_build_x64_release.bat
+++ b/build_scripts/windows/win_VS_build_x64_release.bat
@@ -90,7 +90,7 @@ IF "%REBUILD_BOOST%"=="yes" (
 
 	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
 )
-- 
GitLab