diff options
author | Ian Lance Taylor <ian@airs.com> | 2008-03-21 15:42:41 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2008-03-21 15:42:41 +0000 |
commit | 93f9b408658edc2c6993893ed07d6686ad9929c3 (patch) | |
tree | f8fd733ee0f0bb5724076cf8ed9fe997688f9c4b /Makefile.def | |
parent | 6214f497d3f1800171978839ef029f712369e2f9 (diff) | |
download | gdb-93f9b408658edc2c6993893ed07d6686ad9929c3.zip gdb-93f9b408658edc2c6993893ed07d6686ad9929c3.tar.gz gdb-93f9b408658edc2c6993893ed07d6686ad9929c3.tar.bz2 |
Copy this patch over from master gcc repository:
* configure.ac: Add support for --enable-gold.
* Makefile.def: Add gold as a directory like ld.
* configure, Makefile.in: Regenerate.
Diffstat (limited to 'Makefile.def')
-rw-r--r-- | Makefile.def | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.def b/Makefile.def index ae8d6d9..0791ed8 100644 --- a/Makefile.def +++ b/Makefile.def @@ -69,6 +69,7 @@ host_modules= { module= mpfr; lib_path=.libs; bootstrap=true; host="none-${host_vendor}-${host_os}"; target="none-${host_vendor}-${host_os}"; }; host_modules= { module= gnuserv; }; +host_modules= { module= gold; bootstrap=true; }; host_modules= { module= gprof; }; host_modules= { module= gzip; }; host_modules= { module= hello; }; @@ -287,6 +288,7 @@ dependencies = { module=configure-gcc; on=configure-intl; }; dependencies = { module=configure-gcc; on=all-binutils; }; dependencies = { module=configure-gcc; on=all-gas; }; dependencies = { module=configure-gcc; on=all-ld; }; +dependencies = { module=configure-gcc; on=all-gold; }; dependencies = { module=all-gcc; on=all-libiberty; hard=true; }; dependencies = { module=all-gcc; on=all-gmp; }; dependencies = { module=all-gcc; on=all-intl; }; @@ -374,6 +376,12 @@ dependencies = { module=all-ld; on=all-build-bison; }; dependencies = { module=all-ld; on=all-build-byacc; }; dependencies = { module=all-ld; on=all-build-flex; }; dependencies = { module=all-ld; on=all-intl; }; +dependencies = { module=configure-gold; on=configure-intl; }; +dependencies = { module=all-gold; on=all-libiberty; }; +dependencies = { module=all-gold; on=all-intl; }; +dependencies = { module=all-gold; on=all-bfd; }; +dependencies = { module=all-gold; on=all-build-bison; }; +dependencies = { module=all-gold; on=all-build-byacc; }; dependencies = { module=configure-opcodes; on=configure-intl; }; dependencies = { module=all-opcodes; on=all-bfd; }; |