diff options
author | Joseph Myers <joseph@codesourcery.com> | 2016-11-17 17:45:41 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2016-11-17 17:45:41 +0000 |
commit | c440d5d58ddef2975d0630bcb0e757d7e697496e (patch) | |
tree | f3f4b090ec3dda978f4d31a03aca2e4177be05c6 /scripts | |
parent | 049cc4855ac09222a460418c9bce589cd12f7294 (diff) | |
download | glibc-c440d5d58ddef2975d0630bcb0e757d7e697496e.tar glibc-c440d5d58ddef2975d0630bcb0e757d7e697496e.tar.gz glibc-c440d5d58ddef2975d0630bcb0e757d7e697496e.tar.bz2 glibc-c440d5d58ddef2975d0630bcb0e757d7e697496e.zip |
Actually use newly built host libraries in build-many-glibcs.py.
This patch adds the missing GCC configure options required to make use
of the newly built host libraries in build-many-glibcs.py.
* scripts/build-many-glibcs.py (Config.build_gcc): Configure with
newly built gmp, mpfr and mpc.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-many-glibcs.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index be561c3430..b0e0f5e8ef 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -813,6 +813,10 @@ class Config(object): # relevance with glibc's own stack checking support. cfg_opts = list(self.gcc_cfg) cfg_opts += ['--disable-libsanitizer', '--disable-libssp'] + host_libs = self.ctx.host_libraries_installdir + cfg_opts += ['--with-gmp=%s' % host_libs, + '--with-mpfr=%s' % host_libs, + '--with-mpc=%s' % host_libs] if bootstrap: tool_build = 'gcc-first' # Building a static-only, C-only compiler that is |