diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-16 22:56:33 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-16 22:56:33 +0000 |
commit | e01b36b0e51501e657b27828a99f8940ce52aee4 (patch) | |
tree | b8fc979b054b91242ba4a5f77d09b3664659b6ac /Makefile.def | |
parent | 6575099f541e63d179018cc2aacd3783d2e1e6d1 (diff) | |
download | gcc-e01b36b0e51501e657b27828a99f8940ce52aee4.tar.gz |
* Makefile.def: Restore host and target settings for gmp.
* Makefile.in: Rebuild.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154217 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'Makefile.def')
-rw-r--r-- | Makefile.def | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.def b/Makefile.def index 496213f2f75..f5c2e11f990 100644 --- a/Makefile.def +++ b/Makefile.def @@ -62,7 +62,13 @@ host_modules= { module= gawk; }; host_modules= { module= gettext; }; host_modules= { module= gmp; lib_path=.libs; bootstrap=true; extra_configure_flags='--disable-shared'; - no_install= true; }; + no_install= true; + // none-*-* disables asm optimizations, bootstrap-testing + // the compiler more thoroughly. + host="none-${host_vendor}-${host_os}"; + // gmp's configure will complain if given anything + // different from host for target. + target="none-${host_vendor}-${host_os}"; }; host_modules= { module= mpfr; lib_path=.libs; bootstrap=true; extra_configure_flags='--disable-shared @extra_mpfr_configure_flags@'; no_install= true; }; |