From 28a9e4c4aaff3a186c344d98d2a2bf918d20a13c Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Fri, 7 May 2021 09:39:55 +0200 Subject: [PATCH] libc: Add workaround for #4926 This change was cherry-picked from an updated version of the sysdep folder contents, we're still shipping an outdated and incomplete set of files. --- lib/libc/glibc/sysdeps/i386/sysdep.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/libc/glibc/sysdeps/i386/sysdep.h b/lib/libc/glibc/sysdeps/i386/sysdep.h index b4bcd8fb6c605130029bfed4fbf1ff02f48c7563..b338b0dc362b89d638309e106746ff22890233f7 100644 --- a/lib/libc/glibc/sysdeps/i386/sysdep.h +++ b/lib/libc/glibc/sysdeps/i386/sysdep.h @@ -61,7 +61,7 @@ lose: SYSCALL_PIC_SETUP \ # define SETUP_PIC_REG(reg) \ .ifndef GET_PC_THUNK(reg); \ - .section .gnu.linkonce.t.GET_PC_THUNK(reg),"ax",@progbits; \ + .section .text.GET_PC_THUNK(reg),"axG",@progbits,GET_PC_THUNK(reg),comdat; \ .globl GET_PC_THUNK(reg); \ .hidden GET_PC_THUNK(reg); \ .p2align 4; \ @@ -97,8 +97,9 @@ GET_PC_THUNK(reg): \ # define SETUP_PIC_REG_STR(reg) \ ".ifndef " GET_PC_THUNK_STR (reg) "\n" \ - ".section .gnu.linkonce.t." GET_PC_THUNK_STR (reg) ",\"ax\",@progbits\n" \ + "section .text." GET_PC_THUNK_STR (reg) ",\"axG\",@progbits," \ ".globl " GET_PC_THUNK_STR (reg) "\n" \ + GET_PC_THUNK_STR (reg) ",comdat\n" \ ".hidden " GET_PC_THUNK_STR (reg) "\n" \ ".p2align 4\n" \ ".type " GET_PC_THUNK_STR (reg) ",@function\n" \ -- 2.54.0