From patchwork Mon Apr 11 20:27:41 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 90695 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (unknown [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id AEAF1B6F17 for ; Tue, 12 Apr 2011 13:24:46 +1000 (EST) Received: from localhost ([::1]:59619 helo=lists2.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9UDZ-0004XX-Qe for incoming@patchwork.ozlabs.org; Mon, 11 Apr 2011 23:24:41 -0400 Received: from eggs.gnu.org ([140.186.70.92]:56747) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9SX0-0003PV-HT for qemu-devel@nongnu.org; Mon, 11 Apr 2011 21:36:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q9Ni7-0003T8-6w for qemu-devel@nongnu.org; Mon, 11 Apr 2011 16:27:48 -0400 Received: from mail-out.m-online.net ([212.18.0.10]:51773) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9Ni6-0003Sr-H3 for qemu-devel@nongnu.org; Mon, 11 Apr 2011 16:27:47 -0400 Received: from frontend1.mail.m-online.net (frontend1.mail.intern.m-online.net [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 65442188B5A1 for ; Mon, 11 Apr 2011 22:27:42 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.8.164]) by mail.m-online.net (Postfix) with ESMTP id AF5DB1C000A2 for ; Mon, 11 Apr 2011 22:27:42 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.180]) by localhost (dynscan1.mail.m-online.net [192.168.8.164]) (amavisd-new, port 10024) with ESMTP id ZtHvXZ7Eawul for ; Mon, 11 Apr 2011 22:27:42 +0200 (CEST) Received: from igel.home (ppp-93-104-129-94.dynamic.mnet-online.de [93.104.129.94]) by mail.mnet-online.de (Postfix) with ESMTP for ; Mon, 11 Apr 2011 22:27:42 +0200 (CEST) Received: by igel.home (Postfix, from userid 501) id 87172CA2A0; Mon, 11 Apr 2011 22:27:41 +0200 (CEST) From: Andreas Schwab To: qemu-devel@nongnu.org X-Yow: Is this going to involve RAW human ecstasy? Date: Mon, 11 Apr 2011 22:27:41 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 212.18.0.10 Subject: [Qemu-devel] [PATCH] ppc.ld: add rela.iplt and provide __rela_iplt_{start, end} X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Andreas Schwab --- ppc.ld | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/ppc.ld b/ppc.ld index 5248ef1..18511ce 100644 --- a/ppc.ld +++ b/ppc.ld @@ -49,6 +49,12 @@ SECTIONS .rela.sbss2 : { *(.rela.sbss2 .rela.sbss2.* .rela.gnu.linkonce.sb2.*) } .rel.bss : { *(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*) } .rela.bss : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) } + .rela.iplt : + { + PROVIDE_HIDDEN (__rela_iplt_start = .); + *(.rela.iplt) + PROVIDE_HIDDEN (__rela_iplt_end = .); + } .rel.plt : { *(.rel.plt) } .rela.plt : { *(.rela.plt) } .init :