From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 123673 invoked by alias); 2 Sep 2019 08:31:37 -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 123664 invoked by uid 89); 2 Sep 2019 08:31:37 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-16.6 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: foss.arm.com Received: from foss.arm.com (HELO foss.arm.com) (217.140.110.172) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 02 Sep 2019 08:31:36 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id D854B28; Mon, 2 Sep 2019 01:31:34 -0700 (PDT) Received: from localhost (e121540-lin.manchester.arm.com [10.32.99.62]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 46AC83F71A; Mon, 2 Sep 2019 01:31:34 -0700 (PDT) From: Richard Sandiford To: Christophe Lyon Mail-Followup-To: Christophe Lyon ,Christophe Lyon , gcc Patches , richard.sandiford@arm.com Cc: Christophe Lyon , gcc Patches Subject: Re: [ARM/FDPIC v5 02/21] [ARM] FDPIC: Handle arm*-*-uclinuxfdpiceabi in configure scripts References: <20190515124006.25840-1-christophe.lyon@st.com> <20190515124006.25840-3-christophe.lyon@st.com> Date: Mon, 02 Sep 2019 08:31:00 -0000 In-Reply-To: (Christophe Lyon's message of "Mon, 2 Sep 2019 09:51:36 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2019-09/txt/msg00033.txt.bz2 Christophe Lyon writes: > diff --git a/gcc/config.gcc b/gcc/config.gcc > index c7a464c..721729d 100644 > --- a/gcc/config.gcc > +++ b/gcc/config.gcc > @@ -1167,7 +1167,7 @@ arm*-*-netbsdelf*) > tmake_file="${tmake_file} arm/t-arm" > target_cpu_cname="strongarm" > ;; > -arm*-*-linux-*) # ARM GNU/Linux with ELF > +arm*-*-linux-* | arm*-*-uclinuxfdpiceabi) # ARM GNU/Linux with ELF > tm_file="dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h arm/elf.h arm/linux-gas.h arm/linux-elf.h" > extra_options="${extra_options} linux-android.opt" > case $target in Better to remove the "# ARM GNU/Linux with ELF" comment too, since it doesn't cover the new case and was already misleading given the bionic support. > diff --git a/libgcc/config.host b/libgcc/config.host > index 91abc84..facca2a 100644 > --- a/libgcc/config.host > +++ b/libgcc/config.host > @@ -435,7 +435,7 @@ arm*-*-fuchsia*) > arm*-*-netbsdelf*) > tmake_file="$tmake_file arm/t-arm arm/t-netbsd t-slibgcc-gld-nover" > ;; > -arm*-*-linux*) # ARM GNU/Linux with ELF > +arm*-*-linux* | arm*-*-uclinuxfdpiceabi) # ARM GNU/Linux with ELF > tmake_file="${tmake_file} arm/t-arm t-fixedpoint-gnu-prefix t-crtfm" > tmake_file="${tmake_file} arm/t-elf arm/t-bpabi arm/t-linux-eabi t-slibgcc-libgcc" > tm_file="$tm_file arm/bpabi-lib.h" Same here. OK with those changes, thanks. Richard