|
9 | 9 | - LLVM_VERSION=12.0.0
|
10 | 10 | - CC=gcc-8
|
11 | 11 | - 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" |
13 | 14 | - secure: "WfMv0kOqVU8+SgZUrwgzvzGvFbZvPmeIqrDJ+sotbzEtDeCcMuZmj/+8VuysXzpShXx/FxCoopWpAz30pedES8anGR3ciZruVPPsi22rOR5IBHuSnbamkmF11eQgRaDcj6GvZL7QeWLHBx6EN+C+mQFEVqRrD5avCO/K0RqWTD4="
|
14 | 15 |
|
15 | 16 | git:
|
@@ -46,6 +47,8 @@ install:
|
46 | 47 | mkdir -p llvm || travis_terminate 1
|
47 | 48 | tar -xf llvm.tar.xz --strip 1 -C llvm || travis_terminate 1
|
48 | 49 | 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 |
49 | 52 |
|
50 | 53 | script:
|
51 | 54 | - unset LD_LIBRARY_PATH
|
@@ -134,9 +137,9 @@ script:
|
134 | 137 | - installed/bin/ldc2 hello.d -of=hello -link-defaultlib-shared
|
135 | 138 | - ./hello
|
136 | 139 | # 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 |
138 | 141 | - ./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 |
140 | 143 | - ./hello_full
|
141 | 144 | # Run dynamic-compile integration test
|
142 | 145 | # FIXME: disabled since LLVM 12, needs https://github.com/ldc-developers/ldc/pull/3184
|
|
0 commit comments