From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20825 invoked by alias); 11 May 2014 00:16:34 -0000 Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Received: (qmail 20730 invoked by uid 89); 11 May 2014 00:16:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-qg0-f46.google.com Received: from mail-qg0-f46.google.com (HELO mail-qg0-f46.google.com) (209.85.192.46) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Sun, 11 May 2014 00:16:32 +0000 Received: by mail-qg0-f46.google.com with SMTP id q108so6031848qgd.19 for ; Sat, 10 May 2014 17:16:30 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=sMXwIqB7dNLVjs9k+t0gnbJugYdbjJ3SSfspE24qf/A=; b=WYwP9KguIMbT0UO/eYit2JtryNyaKVtWVjyZiMdAubrLiN7r1N6ODAS/oFet+b2hwo CjdtLX8SL0Qgjtbn/GreHEPd3Adjn3yKVPHsFJe0QUbo58JC5dDR0eNIlxPf8y23JwKV PNTXqpSIV4JVv4PiWDattS1JqhZk5WkDCoMwb4V6X+xFtI18uzO+Olza1t4BRrPG0ht+ 7BNwnyeGU+2fK7/HLr/V6VF29uQYSc+cwPkb9VXMyMYujdUshwX6GbxOWCkZjyu3O695 KvRhze4Vkzox0N14fklnVGQp8L4mvAcpC9Gs5776e+vlG4YcyVBRAorhoFCNvGDhFoV2 YTeA== X-Gm-Message-State: ALoCoQlE7bowdktz214hWZ8UhHkaL0VF3zvh4OotS5cxNeaYt5EZMMqrm5MAB8z3SSPmJNAlXOGv X-Received: by 10.140.49.71 with SMTP id p65mr25646724qga.47.1399767390281; Sat, 10 May 2014 17:16:30 -0700 (PDT) Received: from ?IPv6:2601:7:1680:338:e47c:a6df:a757:aefb? ([2601:7:1680:338:e47c:a6df:a757:aefb]) by mx.google.com with ESMTPSA id g8sm13956219qag.43.2014.05.10.17.16.28 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 10 May 2014 17:16:29 -0700 (PDT) Message-ID: <536EC15A.9050402@codyps.com> Date: Sun, 11 May 2014 00:16:00 -0000 From: Cody P Schafer User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: crossgcc@sourceware.org Subject: Re: [PATCH] Avoid passing --enable-multilib References: <5c970c1ceb22528fe28a.1399687923@localhost> In-Reply-To: <5c970c1ceb22528fe28a.1399687923@localhost> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2014-05/txt/msg00025.txt.bz2 On 05/09/2014 07:12 PM, Cody Schafer wrote: > # HG changeset patch > # User Cody Schafer > # Date 1399687919 25200 > # Fri May 09 19:11:59 2014 -0700 > # Node ID 5c970c1ceb22528fe28a7669a9f6ef67a4eedae3 > # Parent c70f928e69e022cfbf09a2103ed0bbd349bc518f > Avoid passing --enable-multilib > > Some versions of gcc have a broken --enable-multilib flag. As multilib is the > default, only pass the --disable-multilib flag > Signed-off-by: Cody P Schafer > diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh > --- a/scripts/build/cc/gcc.sh > +++ b/scripts/build/cc/gcc.sh > @@ -367,11 +367,7 @@ > extra_config+=("--with-system-zlib") > fi > > - if [ "${CT_MULTILIB}" = "y" ]; then > - extra_config+=("--enable-multilib") > - else > - extra_config+=("--disable-multilib") > - fi > + [ "${CT_MULTILIB}" != "y" ] && extra_config+=("--disable-multilib") > > CT_DoLog DEBUG "Extra config passed: '${extra_config[*]}'" > > > > -- > For unsubscribe information see http://sourceware.org/lists.html#faq > -- For unsubscribe information see http://sourceware.org/lists.html#faq