Skip to content

Commit 3da037f

Browse files
committed
Download the GCC sources insecurely
This is needed as they are built on a long-outdated Debian version. :(
1 parent 157898e commit 3da037f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ci/docker/host-x86_64/dist-x86_64-linux/build-gcc.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ cd gcc-$GCC
2222
# latter host is presented to `wget`! Therefore, we choose to download from the insecure HTTP server
2323
# instead here.
2424
#
25-
sed -i'' 's|ftp://gcc\.gnu\.org/|https://gcc.gnu.org/|g' ./contrib/download_prerequisites
25+
# FIXME: use HTTPS (see https://github.com/rust-lang/rust/pull/86586#issuecomment-868355356)
26+
sed -i'' 's|ftp://gcc\.gnu\.org/|http://gcc.gnu.org/|g' ./contrib/download_prerequisites
2627

2728
./contrib/download_prerequisites
2829
mkdir ../gcc-build

0 commit comments

Comments
 (0)