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 ddc7c05 commit 37cea6dCopy full SHA for 37cea6d
.github/workflows/build.yml
@@ -13,15 +13,15 @@ jobs:
13
with:
14
node-version: 22
15
16
- - name: Get the latest version of binutils for an up-to-date GAS
+ - name: Get the latest version of binutils and install GAS
17
run: |
18
LATEST_RELEASE_URL=$(wget -q -O - ftp://ftp.gnu.org/gnu/binutils/ | grep -o "ftp[^\"]*.tar.gz" | sort -V | tail -n 1)
19
wget -m ${LATEST_RELEASE_URL} -nd -O binutils-latest.tar.gz
20
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
+ su -c "make all-gas install-gas"
25
as --version
26
27
- name: Install and Build
0 commit comments