From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31044 invoked by alias); 17 Nov 2015 10:54:23 -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 31034 invoked by uid 89); 17 Nov 2015 10:54:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.4 required=5.0 tests=AWL,BAYES_50,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 X-HELO: smtp.eu.adacore.com Received: from mel.act-europe.fr (HELO smtp.eu.adacore.com) (194.98.77.210) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 17 Nov 2015 10:54:22 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id 92D023317037 for ; Tue, 17 Nov 2015 11:54:19 +0100 (CET) Received: from smtp.eu.adacore.com ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id L32XOqlqkl0t for ; Tue, 17 Nov 2015 11:54:19 +0100 (CET) Received: from polaris.localnet (bon31-6-88-161-99-133.fbx.proxad.net [88.161.99.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.eu.adacore.com (Postfix) with ESMTPSA id 730693317034 for ; Tue, 17 Nov 2015 11:54:19 +0100 (CET) From: Eric Botcazou To: gcc-patches@gcc.gnu.org Subject: [visium] Provide user-mode version of libraries Date: Tue, 17 Nov 2015 10:54:00 -0000 Message-ID: <2791704.tgekoBjZrU@polaris> User-Agent: KMail/4.14.9 (Linux/3.16.7-29-desktop; KDE/4.14.9; x86_64; ; ) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="nextPart5228752.QpGcoHnj6n" Content-Transfer-Encoding: 7Bit X-SW-Source: 2015-11/txt/msg02063.txt.bz2 This is a multi-part message in MIME format. --nextPart5228752.QpGcoHnj6n Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Content-length: 265 This adds a user-mode set of multilibs to the visium-elf port. Applied on the mainline. 2015-11-17 Eric Botcazou * config/visium/t-visium (MULTILIB_OPTIONS): Add muser-mode. (MULTILIB_DIRNAMES): Adjust accordingly. -- Eric Botcazou --nextPart5228752.QpGcoHnj6n Content-Disposition: attachment; filename="p.diff" Content-Transfer-Encoding: 7Bit Content-Type: text/x-patch; charset="utf-8"; name="p.diff" Content-length: 498 Index: config/visium/t-visium =================================================================== --- config/visium/t-visium (revision 230453) +++ config/visium/t-visium (working copy) @@ -19,5 +19,5 @@ # The compiler defaults to -mcpu=gr5 but this may be overridden via --with-cpu # at configure time so the -mcpu setting must be symmetrical. -MULTILIB_OPTIONS = mcpu=gr5/mcpu=gr6 -MULTILIB_DIRNAMES = gr5 gr6 +MULTILIB_OPTIONS = mcpu=gr5/mcpu=gr6 muser-mode +MULTILIB_DIRNAMES = gr5 gr6 user --nextPart5228752.QpGcoHnj6n--