diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2021-01-06 13:18:34 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-01-07 09:28:58 +1030 |
commit | f05bbca3d9598cd78daa4aaf13d5a7c8d7465069 (patch) | |
tree | 383348491e89c154b2387c34803ddcd78e60a77e /Makefile.def | |
parent | 15a47f437d2ba320aa9cb72986812f115498dbf9 (diff) | |
download | gcc-f05bbca3d9598cd78daa4aaf13d5a7c8d7465069.tar.gz |
sync libctf toplevel from binutils-gdb
This pulls in the toplevel portions of these binutils-gdb commits:
1ff6de031241c59d0ff bfd, ld: add CTF section linking
87279e3cef5b2c54f4a libctf: installable libctf as a shared library
c59e30ed1727135f8ef libctf: new testsuite
* Makefile.def: Sync with binutils-gdb:
(dependencies): all-ld depends on all-libctf.
(host_modules): libctf is no longer no_install.
No longer no_check. Checking depends on all-ld.
* Makefile.in: Regenerated.
Diffstat (limited to 'Makefile.def')
-rw-r--r-- | Makefile.def | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.def b/Makefile.def index c45be5bff45..3e38f61193f 100644 --- a/Makefile.def +++ b/Makefile.def @@ -141,8 +141,7 @@ host_modules= { module= lto-plugin; bootstrap=true; extra_make_flags='@extra_linker_plugin_flags@'; }; host_modules= { module= libcc1; extra_configure_flags=--enable-shared; }; host_modules= { module= gotools; }; -host_modules= { module= libctf; no_install=true; no_check=true; - bootstrap=true; }; +host_modules= { module= libctf; bootstrap=true; }; target_modules = { module= libstdc++-v3; bootstrap=true; @@ -463,6 +462,7 @@ dependencies = { module=all-binutils; on=all-build-bison; }; dependencies = { module=all-binutils; on=all-intl; }; dependencies = { module=all-binutils; on=all-gas; }; dependencies = { module=all-binutils; on=all-libctf; }; +dependencies = { module=all-ld; on=all-libctf; }; // We put install-opcodes before install-binutils because the installed // binutils might be on PATH, and they might need the shared opcodes @@ -561,6 +561,7 @@ dependencies = { module=configure-libctf; on=all-bfd; }; dependencies = { module=configure-libctf; on=all-intl; }; dependencies = { module=configure-libctf; on=all-zlib; }; dependencies = { module=configure-libctf; on=all-libiconv; }; +dependencies = { module=check-libctf; on=all-ld; }; // Warning, these are not well tested. dependencies = { module=all-bison; on=all-intl; }; |