disable link libstdc++ statically
This commit is contained in:
parent
f3312609f7
commit
23adb46b47
1 changed files with 5 additions and 1 deletions
|
|
@ -113,7 +113,11 @@ export RUST_RELEASE_CHANNEL=$(releaseChannel)
|
|||
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=$RUST_RELEASE_CHANNEL"
|
||||
|
||||
if [ "$DEPLOY$DEPLOY_ALT" = "1" ]; then
|
||||
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"
|
||||
if [[ "$CI_JOB_NAME" == *ohos* ]]; then
|
||||
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-llvm-static-stdcpp"
|
||||
else
|
||||
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"
|
||||
fi
|
||||
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.remap-debuginfo"
|
||||
|
||||
if [ "$DEPLOY_ALT" != "" ] && isLinux; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue