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.
1 parent 2ab9ebf commit 65768a2Copy full SHA for 65768a2
.github/workflows/build.yml
@@ -12,12 +12,18 @@ jobs:
12
- uses: actions/setup-node@v3
13
with:
14
node-version: 22
15
-
16
- - name: Get binutils
17
- run: |
18
- sudo apt-get update
19
- sudo apt-get install binutils -y
20
+ - name: Get the latest version of binutils for an up-to-date GAS
+ run: |
+ LATEST_RELEASE_URL=$(wget -q -O - ftp://ftp.gnu.org/gnu/binutils/ | grep -o "ftp[^\"]*.tar.gz" | sort -V | tail -n 1)
+ wget -m ${LATEST_RELEASE_URL} -nd -O binutils-latest.tar.gz
+ mkdir binutils
21
+ tar xf binutils-latest.tar.gz -C binutils --strip-components 1
22
+ cd binutils
23
+ ./configure
24
+ make all-gas install-gas
25
+ as --version
26
+
27
- name: Install and Build
28
run: |
29
npm install
0 commit comments