From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 97773 invoked by alias); 9 Jun 2017 12:54:57 -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 86394 invoked by uid 89); 9 Jun 2017 12:54:38 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.2 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_SOFTFAIL autolearn=ham version=3.3.2 spammy= X-HELO: eggs.gnu.org Received: from eggs.gnu.org (HELO eggs.gnu.org) (208.118.235.92) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 09 Jun 2017 12:54:37 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dJJQp-0007gm-5t for gcc-patches@gcc.gnu.org; Fri, 09 Jun 2017 08:54:31 -0400 Received: from foss.arm.com ([217.140.101.70]:47128) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dJJQo-0007Te-W5 for gcc-patches@gcc.gnu.org; Fri, 09 Jun 2017 08:54:27 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id AC1DC2B; Fri, 9 Jun 2017 05:54:26 -0700 (PDT) Received: from e105689-lin.cambridge.arm.com (e105689-lin.cambridge.arm.com [10.2.207.32]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 39F463F3E1; Fri, 9 Jun 2017 05:54:26 -0700 (PDT) From: Richard Earnshaw To: gcc-patches@gcc.gnu.org Cc: Richard Earnshaw Subject: [PATCH 24/30] [arm][linux-eabi] Ensure all multilib variables are reset Date: Fri, 09 Jun 2017 12:54:00 -0000 Message-Id: <102b17edb1265cc375206dd3bc99ad249b387853.1497004220.git.Richard.Earnshaw@arm.com> In-Reply-To: References: In-Reply-To: References: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------2.7.4" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 217.140.101.70 X-SW-Source: 2017-06/txt/msg00623.txt.bz2 This is a multi-part message in MIME format. --------------2.7.4 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: quoted-printable Content-length: 305 No real change, but for consistency reset all multilib related variables. config/arm/t-linux-eabi (MULTILIB_EXCEPTIONS): Set to empty. (MULTILIB_RESUE): Likewise. (MULTILIB_MATCHES): Likewise. (MULTLIB_REQUIRED): Likewise. --- gcc/config/arm/t-linux-eabi | 4 ++++ 1 file changed, 4 insertions(+) --------------2.7.4 Content-Type: text/x-patch; name="0024-arm-linux-eabi-Ensure-all-multilib-variables-are-res.patch" Content-Disposition: attachment; filename="0024-arm-linux-eabi-Ensure-all-multilib-variables-are-res.patch" Content-Transfer-Encoding: quoted-printable Content-length: 513 diff --git a/gcc/config/arm/t-linux-eabi b/gcc/config/arm/t-linux-eabi index 117c0eb..c11af7a 100644 --- a/gcc/config/arm/t-linux-eabi +++ b/gcc/config/arm/t-linux-eabi @@ -22,6 +22,10 @@ # MULTILIB_DEFAULTS in linux-elf.h. MULTILIB_OPTIONS =3D MULTILIB_DIRNAMES =3D +MULTILIB_EXCEPTIONS =3D +MULTILIB_REUSE =3D +MULTILIB_MATCHES =3D +MULTILIB_REQUIRED =3D =20 #MULTILIB_OPTIONS +=3D mcpu=3Dfa606te/mcpu=3Dfa626te/mcpu=3Dfmp626/mcp= u=3Dfa726te #MULTILIB_DIRNAMES +=3D fa606te fa626te fmp626 fa726te --------------2.7.4--