Skip to content
This repository was archived by the owner on Dec 21, 2023. It is now read-only.

Commit 3b49bb7

Browse files
author
Guihao Liang
authored
trim build log (#3095)
* trim build log
1 parent 847b07c commit 3b49bb7

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

scripts/install_python_toolchain.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,26 @@ mkdir -p deps/local/lib
4949
mkdir -p deps/local/include
5050

5151
pushd deps/local/include
52+
53+
set +x
54+
echo "run 'ln -Ffs' files from ../../env/include/$PYTHON_FULL_NAME"
5255
for f in ../../env/include/"$PYTHON_FULL_NAME"/*; do
5356
ln -Ffs "$f" "$(basename "$f")"
5457
done
58+
set -x
59+
5560
popd
5661

5762
mkdir -p deps/local/bin
5863
pushd deps/local/bin
64+
65+
set +x
66+
echo "run 'ln -Ffs' on files from ../../env/bin/"
5967
for f in ../../env/bin/*; do
6068
ln -Ffs "$f" "$(basename "$f")"
6169
done
70+
set -x
71+
6272
popd
6373

6474
linux_patch_sigfpe_handler

0 commit comments

Comments
 (0)