diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-10-07 05:41:23 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-10-07 05:41:23 +0000 |
commit | 85627a288b19e95f7b8c6885dbf9a100ff0e723b (patch) | |
tree | 82e743755acbf084eedbdf00f2334a09c169f9b3 | |
parent | fdc056ccb06cdb28d3907dfc7eda7b0e323e2dfa (diff) | |
download | gcc-85627a288b19e95f7b8c6885dbf9a100ff0e723b.tar.gz |
* Makefile.def: check-gold depends upon all-gas.
* Makefile.in: Rebuild.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@152514 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.def | 1 | ||||
-rw-r--r-- | Makefile.in | 8 |
3 files changed, 14 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index fc1e037caed..b68978ca0da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-10-06 Ian Lance Taylor <iant@google.com> + + * Makefile.def: check-gold depends upon all-gas. + * Makefile.in: Rebuild. + 2009-10-05 Phil Muldoon <pmuldoon@redhat.com> * MAINTAINERS (Write After Approval): Add myself. @@ -11,7 +16,6 @@ * configure.ac (host_libs): Add lto-plugin. * configure: Regenerate. - 2009-10-03 Diego Novillo <dnovillo@google.com> * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC. diff --git a/Makefile.def b/Makefile.def index 52d486fdb7b..5541a67433e 100644 --- a/Makefile.def +++ b/Makefile.def @@ -428,6 +428,7 @@ 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=check-gold; on=all-binutils; }; +dependencies = { module=check-gold; on=all-gas; }; dependencies = { module=configure-opcodes; on=configure-intl; }; dependencies = { module=all-opcodes; on=all-bfd; }; diff --git a/Makefile.in b/Makefile.in index 8738cd49f30..afff42e2601 100644 --- a/Makefile.in +++ b/Makefile.in @@ -56734,6 +56734,14 @@ check-stage3-gold: maybe-all-stage3-binutils check-stage4-gold: maybe-all-stage4-binutils check-stageprofile-gold: maybe-all-stageprofile-binutils check-stagefeedback-gold: maybe-all-stagefeedback-binutils +check-gold: maybe-all-gas + +check-stage1-gold: maybe-all-stage1-gas +check-stage2-gold: maybe-all-stage2-gas +check-stage3-gold: maybe-all-stage3-gas +check-stage4-gold: maybe-all-stage4-gas +check-stageprofile-gold: maybe-all-stageprofile-gas +check-stagefeedback-gold: maybe-all-stagefeedback-gas configure-opcodes: maybe-configure-intl configure-stage1-opcodes: maybe-configure-stage1-intl |