We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f8e5e4 + 0eac8e6 commit ede17e2Copy full SHA for ede17e2
2 files changed
.github/actions/install-lld/action.yml
@@ -0,0 +1,9 @@
1
+name: 'Install LLD linker'
2
+description: 'Install the LLD linker on Linux runners (no-op on macOS/Windows)'
3
+runs:
4
+ using: composite
5
+ steps:
6
+ - name: Install LLD
7
+ if: runner.os == 'Linux'
8
+ shell: bash
9
+ run: sudo apt-get update && sudo apt-get install -y lld
0 commit comments