From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1025 invoked by alias); 9 Feb 2005 16:44:19 -0000 Mailing-List: contact binutils-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sources.redhat.com Received: (qmail 860 invoked from network); 9 Feb 2005 16:44:00 -0000 Received: from unknown (HELO cam-admin0.cambridge.arm.com) (193.131.176.58) by sourceware.org with SMTP; 9 Feb 2005 16:44:00 -0000 Received: from pc960.cambridge.arm.com (pc960.cambridge.arm.com [10.1.205.4]) by cam-admin0.cambridge.arm.com (8.12.10/8.12.10) with ESMTP id j19Gcs4m018964; Wed, 9 Feb 2005 16:38:54 GMT Received: from pc960.cambridge.arm.com (localhost.localdomain [127.0.0.1]) by pc960.cambridge.arm.com (8.12.8/8.12.8) with ESMTP id j19Ge7rg004423; Wed, 9 Feb 2005 16:40:09 GMT Received: (from rearnsha@localhost) by pc960.cambridge.arm.com (8.12.8/8.12.8/Submit) id j19Ge5ip004418; Wed, 9 Feb 2005 16:40:06 GMT X-Authentication-Warning: pc960.cambridge.arm.com: rearnsha set sender to rearnsha@gcc.gnu.org using -f Subject: Re: [PATCH] Indicate dependency on personality routines for ARM EHABI From: Richard Earnshaw To: Julian Brown Cc: binutils@sources.redhat.com In-Reply-To: <420A38B6.3010609@codesourcery.com> References: <420A38B6.3010609@codesourcery.com> Content-Type: text/plain Content-Transfer-Encoding: 7bit Organization: GNU Message-Id: <1107967189.4376.6.camel@pc960.cambridge.arm.com> Mime-Version: 1.0 Date: Wed, 09 Feb 2005 17:12:00 -0000 X-SW-Source: 2005-02/txt/msg00165.txt.bz2 On Wed, 2005-02-09 at 16:22, Julian Brown wrote: > Hi, > > This patch causes gas to emit dependencies on personality routines > (__aeabi_unwind_cpp_pr[012]) from a suitable run-time library when > necessary, using an R_ARM_NONE relocation type. > > Tested on i686-pc-linux-gnu and arm-none-eabi with no regressions > (though the expected output for the .ARM.extab has changed for one of > the tests.) > > OK to apply? > > ChangeLog: > > * bfd/bfd-in2.h (bfd_reloc_code_real): New relocation type > (BFD_RELOC_ARM_NONE). > * bfd/elf32-arm.c (elf32_arm_reloc_map): BFD_RELOC_ARM_NONE maps to > R_ARM_NONE. > * bfd/libbfd.h (bfd_reloc_code_): Add BFD_RELOC_ARM_NONE. > * bfd/reloc.c (BFD_RELOC_ARM_NONE): Add. > * gas/config/tc-arm.c (md_apply_fix3): Handle BFD_RELOC_ARM_NONE. > (tc_gen_reloc): Handle BFD_RELOC_ARM_NONE. > (create_unwind_entry): Output dependency on the unwinding routines. > * gas/testsuite/gas/arm/unwind.d: Alter expected output to include > dependency on __aeabi_unwind_cpp_pr[01]. bfd-in2.h is a generated file. Rather than your above ChangeLog entry you should just log it as regenerated. It's not necessary to include patches to generated files when sending a changeset, just note that it has been rebuilt. OK apart from that. R.