From patchwork Wed Sep 11 11:41:22 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kai Tietz X-Patchwork-Id: 274261 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 AFEFA2C010F for ; Wed, 11 Sep 2013 21:41:32 +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 :mime-version:date:message-id:subject:from:to:content-type; q= dns; s=default; b=RHS/UWpHyFxT/SAgjdS0YuyjE+VWniosyE9Nd0rfZcTJVx /kkrWTjcbsG5KauikWrjIDkvy2M0nEouvs+OxI3x6om7+EyXWT0jUIO2BG0M3Y2A fTko/un6KeweHdtB+tUxqUYmwAxyTAXo4LGts/7Aw2pJE31oBvGGFIU3ynT7k= 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 :mime-version:date:message-id:subject:from:to:content-type; s= default; bh=tI3tqQ9RezGyLqJL+3fuLth3bto=; b=HQf6XaxcKBgE7zCh3yyW qZX4+Blf/bg3p2KDq4Fhdc5azxSodGVIoNdO8nVPo+QPG0UEDugKWe5JMn2MVFc0 aD9NfY5ICehVJyycmGFeed0Iz3jFtUzquhm1GLVEZFowx5p3pwBn/rcqd/lKXrto h5fAfI9GUOzro9lJBqafMPQ= Received: (qmail 21657 invoked by alias); 11 Sep 2013 11:41:26 -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 21648 invoked by uid 89); 11 Sep 2013 11:41:26 -0000 Received: from mail-ie0-f175.google.com (HELO mail-ie0-f175.google.com) (209.85.223.175) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 11 Sep 2013 11:41:26 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_00, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, NO_RELAYS autolearn=no version=3.3.2 X-HELO: mail-ie0-f175.google.com Received: by mail-ie0-f175.google.com with SMTP id 9so4458296iec.20 for ; Wed, 11 Sep 2013 04:41:23 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.50.27.9 with SMTP id p9mr230247igg.53.1378899682900; Wed, 11 Sep 2013 04:41:22 -0700 (PDT) Received: by 10.64.133.138 with HTTP; Wed, 11 Sep 2013 04:41:22 -0700 (PDT) Date: Wed, 11 Sep 2013 13:41:22 +0200 Message-ID: Subject: [patch config.gcc]: Add a missed 64-bit cygwin case From: Kai Tietz To: GCC Patches X-IsSubscribed: yes Hi, One missing nit in config.gcc to choose proper cpu default and split cygwin and mingw targets. ChangeLog 2013-09-11 Kai Tietz * config.gcc: Separate cases for mingw and cygwin targets, and add 64-bit cygwin target case. Tested for x86_64-pc-cygwin, i686-pc-cygwin, i686-w64-mingw32, and for x86_64-w64-mingw32. I will apply this patch in a cuple of hours, if there are no objections. Regards, Kai Index: config.gcc =================================================================== --- config.gcc (Revision 202491) +++ config.gcc (Arbeitskopie) @@ -3858,8 +3858,10 @@ case ${target} in ;; i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*) ;; - i[34567]86-*-cygwin* | i[34567]86-*-mingw* | x86_64-*-mingw*) + i[34567]86-*-cygwin* | x86_64-*-cygwin*) ;; + i[34567]86-*-mingw* | x86_64-*-mingw*) + ;; i[34567]86-*-freebsd* | x86_64-*-freebsd*) ;; ia64*-*-linux*)