Skip to content

Commit 545042d

Browse files
committed
build-script: reduce the amount of debug output
1 parent 1e70c51 commit 545042d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

utils/build-script-impl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1907,8 +1907,6 @@ for deployment_target in "${HOST_TARGET}" "${CROSS_COMPILE_TOOLS_DEPLOYMENT_TARG
19071907

19081908
# When we are building LLVM create symlinks to the c++ headers.
19091909
if [[ "${product}" == "llvm" ]]; then
1910-
set -x
1911-
19121910
# Find the location of the c++ header dir.
19131911
if [[ "$(uname -s)" == "Darwin" ]] ; then
19141912
HOST_CXX_DIR=$(dirname ${HOST_CXX})
@@ -1922,6 +1920,7 @@ for deployment_target in "${HOST_TARGET}" "${CROSS_COMPILE_TOOLS_DEPLOYMENT_TARG
19221920
BUILT_CXX_INCLUDE_DIR="$llvm_build_dir/include"
19231921

19241922
echo "symlinking the system headers ($HOST_CXX_HEADERS_DIR) into the local clang build directory ($BUILT_CXX_INCLUDE_DIR)."
1923+
set -x
19251924
ln -s -f "$HOST_CXX_HEADERS_DIR" "$BUILT_CXX_INCLUDE_DIR"
19261925
{ set +x; } 2>/dev/null
19271926
fi

0 commit comments

Comments
 (0)