diff options
author | Ian Lance Taylor <iant@google.com> | 2015-01-09 21:23:09 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2015-01-09 21:23:09 +0000 |
commit | bf1de3f0ac48e095e9446a2408649766bf5a947c (patch) | |
tree | ac01f2f285980d0d29dd2d65f8bea8c6f69f3ea9 /Makefile.def | |
parent | b44fb4c37a4697dfd50c37282c9d2ec2bd3aa95a (diff) | |
download | gcc-bf1de3f0ac48e095e9446a2408649766bf5a947c.tar.gz |
configure.ac (host_tools): Add gotools.
./:2015-01-09 Ian Lance Taylor <iant@google.com>
* configure.ac (host_tools): Add gotools.
* Makefile.def (host_modules): Add gotools.
(dependencies): Add dependency of all-gotools on all-target-libgo.
gcc/go/:
2015-01-09 Ian Lance Taylor <iant@google.com>
* config-lang.in (lang_dirs): Define.
gotools/:
2015-01-09 Ian Lance Taylor <iant@google.com>
* Initial implementation.
From-SVN: r219407
Diffstat (limited to 'Makefile.def')
-rw-r--r-- | Makefile.def | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.def b/Makefile.def index 15ab6132e1d..aa75842c136 100644 --- a/Makefile.def +++ b/Makefile.def @@ -120,6 +120,7 @@ host_modules= { module= lto-plugin; bootstrap=true; extra_configure_flags='--enable-shared @extra_linker_plugin_flags@ @extra_linker_plugin_configure_flags@'; extra_make_flags='@extra_linker_plugin_flags@'; }; host_modules= { module= libcc1; extra_configure_flags=--enable-shared; }; +host_modules= { module= gotools; }; target_modules = { module= libstdc++-v3; bootstrap=true; @@ -363,6 +364,8 @@ dependencies = { module=all-lto-plugin; on=all-libiberty-linker-plugin; }; dependencies = { module=configure-libcc1; on=configure-gcc; }; dependencies = { module=all-libcc1; on=all-gcc; }; +dependencies = { module=all-gotools; on=all-target-libgo; }; + dependencies = { module=all-utils; on=all-libiberty; }; dependencies = { module=configure-mpfr; on=all-gmp; }; |