From: Maciej W. Rozycki Date: Fri, 14 Jul 2017 10:53:08 +0000 (+0100) Subject: PR ld/21529: Use a linker script to limit output with the test case X-Git-Tag: binutils-2_29~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=991a4012c56f09d9ea7f0b44e47231693a774e94;p=thirdparty%2Fbinutils-gdb.git PR ld/21529: Use a linker script to limit output with the test case Complement commit d9409498813c ("Add a testcase for PR ld/21529") and use a linker script to prevent an inter-segment gap arranged by the default linker script associated with some targets such as `rx-elf': $ ld -e main -o tmpdir/dump-elf tmpdir/pr21529.o $ readelf -l tmpdir/dump-elf Elf file type is EXEC (Executable file) Entry point 0x10000004 There are 2 program headers, starting at offset 52 Program Headers: Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align LOAD 0x001000 0x10000000 0x10000000 0x00008 0x00008 R E 0x1000 LOAD 0x001ffc 0xbffffffc 0xbffffffc 0x00004 0x00004 RW 0x1000 Section to Segment mapping: Segment Sections... 00 .text 01 .stack $ and converted to padding with the use of the binary BFD for output from producing unreasonably large files. ld/ * testsuite/ld-unique/pr21529.ld: New test linker script. * testsuite/ld-unique/pr21529.d: Use it. (cherry picked from commit 211b0bed95b3f6b177a541ec52302b8febd6b49c) --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 1f978bf0c25..165dee962f9 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2016-07-14 Maciej W. Rozycki + + * testsuite/ld-unique/pr21529.ld: New test linker script. + * testsuite/ld-unique/pr21529.d: Use it. + 2017-07-11 Jiong Wang * testsuite/ld-aarch64/dt_textrel.d: Use "#pass" instead of ".*" to diff --git a/ld/testsuite/ld-unique/pr21529.d b/ld/testsuite/ld-unique/pr21529.d index 1bcd4fed269..bc4763dfeb1 100644 --- a/ld/testsuite/ld-unique/pr21529.d +++ b/ld/testsuite/ld-unique/pr21529.d @@ -1,4 +1,4 @@ -#ld: --oformat binary -e main +#ld: --oformat binary -T pr21529.ld -e main #objdump: -s -b binary #xfail: aarch64*-*-* arm*-*-* hppa-*-* ia64-*-* nds32*-*-* score-*-* diff --git a/ld/testsuite/ld-unique/pr21529.ld b/ld/testsuite/ld-unique/pr21529.ld new file mode 100644 index 00000000000..113e70bc637 --- /dev/null +++ b/ld/testsuite/ld-unique/pr21529.ld @@ -0,0 +1,5 @@ +SECTIONS +{ + .text : { *(.text) } + /DISCARD/ : { *(*) } +}