From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 419283953CE9; Tue, 27 Oct 2020 16:56:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 419283953CE9 From: "bbatliner at ocient dot com" To: glibc-bugs@sourceware.org Subject: [Bug libc/26386] libc_nonshared.a 32-bit relocations Date: Tue, 27 Oct 2020 16:56:24 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: glibc X-Bugzilla-Component: libc X-Bugzilla-Version: 2.28 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: bbatliner at ocient dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: glibc-bugs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-bugs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Oct 2020 16:56:24 -0000 https://sourceware.org/bugzilla/show_bug.cgi?id=3D26386 --- Comment #3 from Brendan Batliner --- Hi Florian, apologies for the late response, we de-prioritized building on CentOS 8 for the time being. Here are some steps to show you that CentOS 7's glibc-devel-2.17 package is built with 64-bit linker relocations. Output is edited for brevity. $ docker run -it --rm centos:7 [root@9bf6f62b0281 /]# cat /etc/system-release CentOS Linux release 7.8.2003 (Core) [root@9bf6f62b0281 /]# yum install -y glibc-devel [root@9bf6f62b0281 /]# readelf -r /lib64/libc_nonshared.a | grep __dso_hand= le 000000000003 000900000009 R_X86_64_GOTPCREL 0000000000000000 __dso_handle = - 4 000000000003 000900000009 R_X86_64_GOTPCREL 0000000000000000 __dso_handle = - 4 [root@9bf6f62b0281 /]# rpm -qf /lib64/libc_nonshared.a glibc-devel-2.17-307.el7.1.x86_64 And here is the corresponding sequence of steps on the latest CentOS 8 Docker image. $ docker run -it --rm centos:8 [root@78d2c175012a /]# cat /etc/system-release CentOS Linux release 8.1.1911 (Core) [root@78d2c175012a /]# dnf install -y glibc-devel [root@78d2c175012a /]# readelf -r /lib64/libc_nonshared.a | grep __dso_hand= le 000000000007 003200000002 R_X86_64_PC32 0000000000000000 __dso_handle = - 4 000000000007 003200000002 R_X86_64_PC32 0000000000000000 __dso_handle = - 4 000000000007 003200000002 R_X86_64_PC32 0000000000000000 __dso_handle = - 4 [root@78d2c175012a /]# rpm -qf /lib64/libc_nonshared.a glibc-devel-2.28-101.el8.x86_64 --=20 You are receiving this mail because: You are on the CC list for the bug.=