From patchwork Fri Sep 13 18:03:05 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Dominique_d=27Humi=C3=A8res?= X-Patchwork-Id: 274834 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 625B92C0174 for ; Sat, 14 Sep 2013 04:03:21 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :to:cc:subject:mime-version:content-type :content-transfer-encoding:message-id:from; q=dns; s=default; b= Nsb3HpDMdjmoAIkKL3sInP+fBniL6dGzn8AXl1fwk0dMoNP0eW+g8dvVjLPNIVEk hxyYNkKuaemPQVRQ8cvDAEZ4dtWLUxaZjx/E25CKFwNVzuAbDOpxNM2t1o43gLRa JAiP1VlchZ6rSrODSBk+K9DcLnBmrhllrTsOUl5g19A= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :to:cc:subject:mime-version:content-type :content-transfer-encoding:message-id:from; s=default; bh=mX/7Sw aNaAaxtrBqlaN76dpiOvc=; b=rTXK7YMuYzYxjp0lq/HV2FTc3HDFhQkBcBL9wm YRossiONNnHk3NpiRYfDJQ0vsnhyqvtzEzcZ4PwjV+MQlQb4L2YvPtGW6lonJjT+ i1laSLpdv1i8vtL4N4ifjdrT8hD1UgobNP0gjgXI8YQh/Qpmz32Dwv4PvnO8k06k j9aOE= Received: (qmail 27531 invoked by alias); 13 Sep 2013 18:03:15 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 27518 invoked by uid 89); 13 Sep 2013 18:03:14 -0000 Received: from nef2.ens.fr (HELO nef2.ens.fr) (129.199.96.40) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 13 Sep 2013 18:03:14 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: nef2.ens.fr Received: from mailhost.lps.ens.fr (tournesol.lps.ens.fr [129.199.120.1]) by nef2.ens.fr (8.13.6/1.01.28121999) with ESMTP id r8DI36v7079395 ; Fri, 13 Sep 2013 20:03:06 +0200 (CEST) X-Envelope-To: gcc-patches@gcc.gnu.org Received: from localhost (localhost [127.0.0.1]) by mailhost.lps.ens.fr (Postfix) with ESMTP id 031353BE1A; Fri, 13 Sep 2013 20:03:06 +0200 (CEST) Received: from mailhost.lps.ens.fr ([127.0.0.1]) by localhost (tournesol.lps.ens.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id n9qBQjQefQhC; Fri, 13 Sep 2013 20:03:05 +0200 (CEST) Received: by mailhost.lps.ens.fr (Postfix, from userid 8513) id E562C3BE1B; Fri, 13 Sep 2013 20:03:05 +0200 (CEST) Date: Fri, 13 Sep 2013 20:03:05 +0200 To: gcc-patches@gcc.gnu.org Cc: thomas@codesourcery.com, iain@codesourcery.com, hainque@adacore.com, ebotcazou@libertysurf.fr Subject: Re: back to the Ada target vs target_alias issue wrt target pairs User-Agent: Heirloom mailx 12.4 7/29/08 MIME-Version: 1.0 Message-Id: <20130913180305.E562C3BE1B@mailhost.lps.ens.fr> From: dominiq@lps.ens.fr (Dominique Dhumieres) The bootstrap failure is fixed with the following patch: [macbook] gcc/work% diff -up ../_clean/gcc/ada/gcc-interface/Makefile.in gcc/ada/gcc-interface/Makefile.in Notes: 1) I did not check for other typos. 2) I don't have write access. Dominique --- ../_clean/gcc/ada/gcc-interface/Makefile.in 2013-09-12 13:18:34.000000000 +0200 +++ gcc/ada/gcc-interface/Makefile.in 2013-09-13 16:58:58.000000000 +0200 @@ -2190,7 +2190,7 @@ ifeq ($(strip $(filter-out %x32 linux%,$ endif # Darwin (Mac OS X) -ifeq ($(strip $(filter-out darwin%,$(target_cpu))),) +ifeq ($(strip $(filter-out darwin%,$(target_os))),) SO_OPTS = -shared-libgcc LIBGNAT_TARGET_PAIRS = \ a-intnam.ads