Bug 22729 - FAIL: pr20995-2
Summary: FAIL: pr20995-2
Status: RESOLVED DUPLICATE of bug 25732
Alias: None
Product: binutils
Classification: Unclassified
Component: ld (show other bugs)
Version: 2.31
: P2 normal
Target Milestone: ---
Assignee: Not yet assigned to anyone
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-01-18 18:33 UTC by H.J. Lu
Modified: 2023-01-23 16:45 UTC (History)
0 users

See Also:
Host:
Target: i386-solaris2.12
Build:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description H.J. Lu 2018-01-18 18:33:15 UTC
i386-solaris2.12 target has

FAIL: Build pr20995-2.so
FAIL: pr20995-2

since

COMMONPAGESIZE="CONSTANT (COMMONPAGESIZE)"

is missing from elf_i386_ldso.sh.  This patch

diff --git a/ld/emulparams/elf_i386_ldso.sh b/ld/emulparams/elf_i386_ldso.sh
index 1328520c57..3cca4e5c7a 100644
--- a/ld/emulparams/elf_i386_ldso.sh
+++ b/ld/emulparams/elf_i386_ldso.sh
@@ -7,6 +7,7 @@ OUTPUT_FORMAT="elf32-i386"
 NO_RELA_RELOCS=yes
 TEXT_START_ADDR=0x08048000
 MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
+COMMONPAGESIZE="CONSTANT (COMMONPAGESIZE)"
 ARCH=i386
 MACHINE=
 TEMPLATE_NAME=elf32

fixes the linker tests.
Comment 1 H.J. Lu 2023-01-23 16:45:15 UTC
Dup.

*** This bug has been marked as a duplicate of bug 25732 ***