diff options
author | Daniel Bertalan <dani@danielbertalan.dev> | 2022-01-08 12:59:14 +0100 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2022-01-10 09:55:45 +0330 |
commit | 162606f3586878d6eaf9a034be84aea8ca60e829 (patch) | |
tree | dfa081d3b74ad3f30dacd02d6012a97c62005efd /Meta | |
parent | d21c38a72df2f69b48bcd500978c701045c29e6b (diff) | |
download | serenity-162606f3586878d6eaf9a034be84aea8ca60e829.zip |
Toolchain+CI: Link LLVM with LLD if available
According to most benchmarks, LLD is faster than GNU ld and the macOS
linker, so let's use it if possible in order to speed up the toolchain
build.
Diffstat (limited to 'Meta')
-rw-r--r-- | Meta/Azure/Setup.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/Azure/Setup.yml b/Meta/Azure/Setup.yml index 6aacfbc40e..4eb452c754 100644 --- a/Meta/Azure/Setup.yml +++ b/Meta/Azure/Setup.yml @@ -10,7 +10,7 @@ steps: sudo add-apt-repository ppa:canonical-server/server-backports sudo add-apt-repository ppa:ubuntu-toolchain-r/test sudo apt-get update - sudo apt-get install ccache e2fsprogs gcc-11 g++-11 libstdc++-11-dev libmpfr-dev libmpc-dev ninja-build qemu-utils qemu-system-i386 unzip + sudo apt-get install ccache e2fsprogs gcc-11 g++-11 libstdc++-11-dev libmpfr-dev libmpc-dev ninja-build qemu-utils qemu-system-i386 unzip lld displayName: 'Install Dependencies' - ${{ if eq(parameters.os, 'Linux') }}: |