Skip to content

Commit c3d195d

Browse files
committed
Travis CI: Make lld the default linker
As for Azure CI Linux, using the LLD bundled with the LDC-LLVM package and thus matching the LLVM version LDC is linked against. The prebuilt Linux packages are thus linked with LLD now.
1 parent cb65d58 commit c3d195d

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.azure-pipelines/1-posix-setup.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ steps:
6363
fi
6464
mkdir llvm
6565
tar -xf llvm.tar.xz --strip 1 -C llvm
66-
# Non-Mac: make lld the default linker
66+
# Non-Mac: make lld the default linker (possibly with enabled assertions unfortunately)
6767
if [ "$CI_OS" != "osx" ]; then
6868
sudo ln -sf "$PWD/llvm/bin/ld.lld" /usr/bin/ld
6969
fi

.travis.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ env:
99
- LLVM_VERSION=12.0.0
1010
- CC=gcc-8
1111
- CXX=g++-8
12-
- OPTS="-DBUILD_LTO_LIBS=ON -DCMAKE_EXE_LINKER_FLAGS=-static-libstdc++ -DJITRT_EXTRA_LDFLAGS=-static-libstdc++ -DLDC_INSTALL_LLVM_RUNTIME_LIBS_ARCH=aarch64"
12+
# FIXME: need to use ld.gold for linking LDC itself for now, fixed in frontend v2.099
13+
- OPTS="-DBUILD_LTO_LIBS=ON -DCMAKE_EXE_LINKER_FLAGS=-static-libstdc++ -DJITRT_EXTRA_LDFLAGS=-static-libstdc++ -DD_COMPILER_FLAGS=-linker=gold -DLDC_INSTALL_LLVM_RUNTIME_LIBS_ARCH=aarch64"
1314
- secure: "WfMv0kOqVU8+SgZUrwgzvzGvFbZvPmeIqrDJ+sotbzEtDeCcMuZmj/+8VuysXzpShXx/FxCoopWpAz30pedES8anGR3ciZruVPPsi22rOR5IBHuSnbamkmF11eQgRaDcj6GvZL7QeWLHBx6EN+C+mQFEVqRrD5avCO/K0RqWTD4="
1415

1516
git:
@@ -46,6 +47,8 @@ install:
4647
mkdir -p llvm || travis_terminate 1
4748
tar -xf llvm.tar.xz --strip 1 -C llvm || travis_terminate 1
4849
rm llvm.tar.xz || travis_terminate 1
50+
# Make lld the default linker (possibly with enabled assertions unfortunately)
51+
- sudo ln -sf "$PWD/llvm/bin/ld.lld" /usr/bin/ld
4952

5053
script:
5154
- unset LD_LIBRARY_PATH
@@ -134,9 +137,9 @@ script:
134137
- installed/bin/ldc2 hello.d -of=hello -link-defaultlib-shared
135138
- ./hello
136139
# Run hello-world integration test with LTO
137-
- installed/bin/ldc2 hello.d -of=hello_thin -linker=gold -flto=thin -defaultlib=phobos2-ldc-lto,druntime-ldc-lto
140+
- installed/bin/ldc2 hello.d -of=hello_thin -flto=thin -defaultlib=phobos2-ldc-lto,druntime-ldc-lto
138141
- ./hello_thin
139-
- installed/bin/ldc2 hello.d -of=hello_full -linker=gold -flto=full -defaultlib=phobos2-ldc-lto,druntime-ldc-lto
142+
- installed/bin/ldc2 hello.d -of=hello_full -flto=full -defaultlib=phobos2-ldc-lto,druntime-ldc-lto
140143
- ./hello_full
141144
# Run dynamic-compile integration test
142145
# FIXME: disabled since LLVM 12, needs https://github.com/ldc-developers/ldc/pull/3184

0 commit comments

Comments
 (0)