From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30581 invoked by alias); 22 May 2019 08:45:41 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 30530 invoked by uid 89); 22 May 2019 08:45:40 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-7.8 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mail-lj1-f195.google.com Received: from mail-lj1-f195.google.com (HELO mail-lj1-f195.google.com) (209.85.208.195) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 22 May 2019 08:45:39 +0000 Received: by mail-lj1-f195.google.com with SMTP id q16so1290129ljj.8 for ; Wed, 22 May 2019 01:45:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=EXHa0XKpUnkgIz6u/8XuH6qsH0HCLGKUN/O3eMG7GS8=; b=Vp8HnfaxXEzMFpchABoqn6MD/w4765nDnX8N3JVkHxk4LnkUUod+pV6moAKMU7y+m1 8esYx2+L0Ek/zt3A8I/SfISsjyigmXIVkAiyH6X9EkZZNJ+Yk3fxK7Iyaxaumf4sQlRF WBChe2zjLOgjvs231fCiihpXA1iUj0sECtIxorXAv8ZiEvjpmI6XahzUmK1OchyAYl8+ hZ7lS+fIcvWve0F+4NtYN1zZaY34icXZWzAOJBK137ieka0jlqZ2TUdsbvr/JxV0y0fx XgqBsMRx31JAOgklQLnUnJAjQbQJiueUF/NxiZW9q+hMggEjU95QdiELDq2fcXB6OZEC p5Tw== MIME-Version: 1.0 References: <20190515124006.25840-1-christophe.lyon@st.com> <20190515124006.25840-4-christophe.lyon@st.com> <67018f7b-f120-b33f-886f-c081a9ee1061@arm.com> <20190515143653.GT23599@brightrain.aerifal.cx> <20190515153718.GV23599@brightrain.aerifal.cx> <2d337959-2238-eb8d-012b-9f46e64728f8@arm.com> <20190515160646.GW23599@brightrain.aerifal.cx> <929589a5-dc82-087c-f9d8-dacbb55a82c3@arm.com> In-Reply-To: <929589a5-dc82-087c-f9d8-dacbb55a82c3@arm.com> From: Christophe Lyon Date: Wed, 22 May 2019 08:45:00 -0000 Message-ID: Subject: Re: [ARM/FDPIC v5 03/21] [ARM] FDPIC: Force FDPIC related options unless -mno-fdpic is provided To: Szabolcs Nagy Cc: Rich Felker , nd , Christophe Lyon , "gcc-patches@gcc.gnu.org" Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2019-05/txt/msg01472.txt.bz2 On Wed, 22 May 2019 at 10:39, Szabolcs Nagy wrote: > > On 21/05/2019 16:28, Christophe Lyon wrote: > > --- a/gcc/config/arm/linux-eabi.h > > +++ b/gcc/config/arm/linux-eabi.h > > @@ -89,7 +89,7 @@ > > #define MUSL_DYNAMIC_LINKER_E "%{mbig-endian:eb}" > > #endif > > #define MUSL_DYNAMIC_LINKER \ > > - "/lib/ld-musl-arm" MUSL_DYNAMIC_LINKER_E "%{mfloat-abi=hard:hf}.so.1" > > + "/lib/ld-musl-arm" MUSL_DYNAMIC_LINKER_E > > "%{mfloat-abi=hard:hf}%{mfdpic:-fdpic}.so.1" > > the line break seems wrong (either needs \ or no newline) > Sorry, that's a mailer artifact. > > --- a/libsanitizer/configure.tgt > > +++ b/libsanitizer/configure.tgt > > @@ -45,7 +45,7 @@ case "${target}" in > > ;; > > sparc*-*-solaris2.11*) > > ;; > > - arm*-*-uclinuxfdpiceabi) > > + arm*-*-fdpiceabi) > > should be *fdpiceabi instead of *-fdpiceabi i think. Indeed, thanks