Skip to content

Commit 1080a69

Browse files
committed
travis: Pass --enable-llvm-static-stdcpp
All our releases are compiled with this, so let's be sure to do so whenever `DEPLOY` is set. This'll ensure that we don't have dynamic dependencies on libstdc++ which LLVM depends on, but instead we link it all statically to have more portable binaries.
1 parent a167c04 commit 1080a69

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/ci/run.sh

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ fi
4343
# either automatically or manually.
4444
if [ "$DEPLOY" != "" ]; then
4545
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=nightly"
46+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"
4647

4748
if [ "$NO_LLVM_ASSERTIONS" = "1" ]; then
4849
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-llvm-assertions"

0 commit comments

Comments
 (0)