Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
-
290ea887
by Pier Angelo Vendrame at 2025-07-17T12:15:30+02:00
1 changed file:
Changes:
... | ... | @@ -153,3 +153,18 @@ EOF |
153 | 153 | needed=$(cat python/mozboot/bin/bootstrap.py | perl -ne "$p")
|
154 | 154 | current="3.8+" # 3.11.x on Debian bookworm, 3.9.20 on our python project
|
155 | 155 | check_update_needed python "$needed" "$current"
|
156 | + |
|
157 | + |
|
158 | +# binutils
|
|
159 | +read -d '' p << 'EOF' || true
|
|
160 | + |
|
161 | +my $d = YAML::XS::LoadFile('taskcluster/kinds/toolchain/misc.yml');
|
|
162 | +my $f = $d->{'linux64-binutils'}{fetches}{fetch}[0];
|
|
163 | +my ($version) = $f =~ m|^binutils-([0-9\\.]+)|;
|
|
164 | +exit 1 unless $version;
|
|
165 | +print "$version\\n";
|
|
166 | +EOF
|
|
167 | + |
|
168 | +needed=$(perl -MYAML::XS -e "$p")
|
|
169 | +current='[% pc("binutils", "version") %]'
|
|
170 | +check_update_needed node "$needed" "$current" |