Skip to content

Commit 5f456d0

Browse files
Build LLD in addition to Clang in Linux CI
1 parent 4a4192a commit 5f456d0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/ci/docker/dist-x86_64-linux/build-clang.sh

+6
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ curl https://releases.llvm.org/$LLVM/cfe-$LLVM.src.tar.xz | \
3030
xz -d | \
3131
tar xf - -C tools/clang --strip-components=1
3232

33+
mkdir -p tools/lld
34+
35+
curl https://releases.llvm.org/$LLVM/lld-$LLVM.src.tar.xz | \
36+
xz -d | \
37+
tar xf - -C tools/lld --strip-components=1
38+
3339
mkdir ../clang-build
3440
cd ../clang-build
3541

0 commit comments

Comments
 (0)