We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f29450a commit 7f9467cCopy full SHA for 7f9467c
src/ci/docker/host-x86_64/dist-x86_64-linux/build-binutils.sh
@@ -4,14 +4,16 @@ set -ex
4
5
source shared.sh
6
7
-curl https://ftp.gnu.org/gnu/binutils/binutils-2.25.1.tar.bz2 | tar xfj -
+VERSION=2.26.1
8
+
9
+curl https://ftp.gnu.org/gnu/binutils/binutils-$VERSION.tar.bz2 | tar xfj -
10
11
mkdir binutils-build
12
cd binutils-build
-hide_output ../binutils-2.25.1/configure --prefix=/rustroot
13
+hide_output ../binutils-$VERSION/configure --prefix=/rustroot
14
hide_output make -j10
15
hide_output make install
16
17
cd ..
18
rm -rf binutils-build
-rm -rf binutils-2.25.1
19
+rm -rf binutils-$VERSION
0 commit comments