diff options
author | Zong Li <zong@andestech.com> | 2018-07-20 15:30:05 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2018-07-20 15:30:05 +0000 |
commit | c8fabb8434b166113059c25eee96107b4dcb3b12 (patch) | |
tree | 1ee31366f9a1aefd14f7cc3f6b968ae3cc62e48d /scripts/build-many-glibcs.py | |
parent | 786658a08829e8a303d846406812f9245846e99c (diff) | |
download | glibc-c8fabb8434b166113059c25eee96107b4dcb3b12.tar.gz glibc-c8fabb8434b166113059c25eee96107b4dcb3b12.tar.xz glibc-c8fabb8434b166113059c25eee96107b4dcb3b12.zip |
Change URL of gcc's tarball
After 7.1.0 version, there is no .bz2 format of gcc's tarball. * scripts/build-many-glibcs.py (Context.checkout_tar): Change the URL of gcc's tarball.
Diffstat (limited to 'scripts/build-many-glibcs.py')
-rwxr-xr-x | scripts/build-many-glibcs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 601718d47c..892288da79 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -869,7 +869,7 @@ class Context(object): if update: return url_map = {'binutils': 'https://ftp.gnu.org/gnu/binutils/binutils-%(version)s.tar.bz2', - 'gcc': 'https://ftp.gnu.org/gnu/gcc/gcc-%(version)s/gcc-%(version)s.tar.bz2', + 'gcc': 'https://ftp.gnu.org/gnu/gcc/gcc-%(version)s/gcc-%(version)s.tar.gz', 'gmp': 'https://ftp.gnu.org/gnu/gmp/gmp-%(version)s.tar.xz', 'linux': 'https://www.kernel.org/pub/linux/kernel/v4.x/linux-%(version)s.tar.xz', 'mpc': 'https://ftp.gnu.org/gnu/mpc/mpc-%(version)s.tar.gz', |