We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdbae9f commit 56747d9Copy full SHA for 56747d9
1 file changed
tools/ci/installBoost.sh
@@ -32,6 +32,7 @@ if all_libs_exist; then
32
fi
33
34
BUILD_DIR=/tmp/boost
35
+BUILD_LOG=/tmp/boost.log
36
37
mkdir -p "${BUILD_DIR}" && cd "${BUILD_DIR}"
38
@@ -54,5 +55,14 @@ else
54
55
TOOLSET=
56
57
-./bootstrap.sh --with-libraries=$(join , ${required_libs[@]}) threading=multi >/dev/null
58
-./b2 link=${link} ${TOOLSET} variant=release --prefix="${INSTALL_DIR}" -j${NPROC} install >/dev/null
+libraries=$(join , "${required_libs[@]}")
59
+
60
+if ! ./bootstrap.sh --with-libraries="$libraries" threading=multi > "$BUILD_LOG"; then
61
+ cat "$BUILD_LOG" || true
62
+ cat bootstrap.log
63
+ exit 1
64
+fi
65
+if ! ./b2 link="${link}" ${TOOLSET} variant=release --prefix="${INSTALL_DIR}" -j${NPROC} install > "$BUILD_LOG"; then
66
+ cat "$BUILD_LOG"
67
68
0 commit comments