diff options
author | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2014-04-04 22:54:42 +0200 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2014-04-04 22:54:42 +0200 |
commit | 50f800063da5cfe4e7fc5f7056530d1802af398c (patch) | |
tree | 8d084095f1a884e03d084818b21d41fc1184c45c | |
parent | abc9061b5c4d684da66945a9928d54a424cb6e4e (diff) | |
download | fsf-binutils-gdb-50f800063da5cfe4e7fc5f7056530d1802af398c.zip fsf-binutils-gdb-50f800063da5cfe4e7fc5f7056530d1802af398c.tar.gz fsf-binutils-gdb-50f800063da5cfe4e7fc5f7056530d1802af398c.tar.bz2 |
This fixes PR bootstrap/60620:
* Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
* Makefile.in: Regenerate.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.def | 1 | ||||
-rw-r--r-- | Makefile.in | 1 |
3 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2014-04-04 Eric Botcazou <ebotcazou@adacore.com> + + PR bootstrap/60620 + * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3. + * Makefile.in: Regenerate. + 2014-03-28 Yaakov Selkowitz <yselkowitz@users.sourceforge.net> * Makefile.def (dependencies): Make all-ld depend on all-binutils diff --git a/Makefile.def b/Makefile.def index fd1bce7..3a0dfdc 100644 --- a/Makefile.def +++ b/Makefile.def @@ -336,6 +336,7 @@ dependencies = { module=all-libcpp; on=all-intl; }; dependencies = { module=all-fixincludes; on=all-libiberty; }; dependencies = { module=all-gnattools; on=all-target-libada; }; +dependencies = { module=all-gnattools; on=all-target-libstdc++-v3; }; dependencies = { module=all-lto-plugin; on=all-libiberty; }; diff --git a/Makefile.in b/Makefile.in index e5b44fc..f6c7d7f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -46730,6 +46730,7 @@ all-stageprofile-libcpp: maybe-all-stageprofile-intl all-stagefeedback-libcpp: maybe-all-stagefeedback-intl all-fixincludes: maybe-all-libiberty all-gnattools: maybe-all-target-libada +all-gnattools: maybe-all-target-libstdc++-v3 all-lto-plugin: maybe-all-libiberty all-stage1-lto-plugin: maybe-all-stage1-libiberty |