diff options
author | Alan Modra <amodra@gmail.com> | 2021-01-26 10:48:09 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-01-26 20:54:43 +1030 |
commit | 1c9c9b9b55520b36c15af94ee0803f0922b3ca09 (patch) | |
tree | 9f173d24144a20066955dc47b2e69201ab527656 /ld/ChangeLog | |
parent | a45ef9a30ba53836cbc4ae1e287c20aeb4b349f6 (diff) | |
download | gdb-1c9c9b9b55520b36c15af94ee0803f0922b3ca09.zip gdb-1c9c9b9b55520b36c15af94ee0803f0922b3ca09.tar.gz gdb-1c9c9b9b55520b36c15af94ee0803f0922b3ca09.tar.bz2 |
PR27226, ld.bfd contains huge .rodata section
This makes it possible to build ld without any compiled-in scripts,
by setting COMPILE_IN=no in the environment. pe, beos and pdp11
targets didn't support scripts from the file system, with pdp11
nastily editing the ld/ldscripts file so that the built-in script
didn't match.
PR 27226
* emulparams/alphavms.sh: Don't set COMPILE_IN.
* emulparams/elf64_ia64_vms.sh: Likewise.
* emulparams/elf64mmix.sh: Likewise.
* emulparams/elf_iamcu.sh: Likewise.
* emulparams/elf_k1om.sh: Likewise.
* emulparams/elf_l1om.sh: Likewise.
* emulparams/mmo.sh: Likewise.
* emulparams/pdp11.sh: Set DATA_SEG_ADDR.
* scripttempl/pdp11.sc: Use it.
* emultempl/pdp11.em: Don't edit .xn script for separate_code,
instead use .xe script. Support scripts from file system.
* emultempl/beos.em: Support scripts from file system.
* emultempl/pe.em: Likewise.
* emultempl/pep.em: Likewise.
* testsuite/ld-bootstrap/bootstrap.exp: Make tmpdir/ldscripts link.
Diffstat (limited to 'ld/ChangeLog')
-rw-r--r-- | ld/ChangeLog | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index befdf5b..638f42d 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,22 @@ +2021-01-26 Alan Modra <amodra@gmail.com> + + PR 27226 + * emulparams/alphavms.sh: Don't set COMPILE_IN. + * emulparams/elf64_ia64_vms.sh: Likewise. + * emulparams/elf64mmix.sh: Likewise. + * emulparams/elf_iamcu.sh: Likewise. + * emulparams/elf_k1om.sh: Likewise. + * emulparams/elf_l1om.sh: Likewise. + * emulparams/mmo.sh: Likewise. + * emulparams/pdp11.sh: Set DATA_SEG_ADDR. + * scripttempl/pdp11.sc: Use it. + * emultempl/pdp11.em: Don't edit .xn script for separate_code, + instead use .xe script. Support scripts from file system. + * emultempl/beos.em: Support scripts from file system. + * emultempl/pe.em: Likewise. + * emultempl/pep.em: Likewise. + * testsuite/ld-bootstrap/bootstrap.exp: Make tmpdir/ldscripts link. + 2021-01-25 Fangrui Song <maskray@google.com> PR ld/27230 |