From patchwork Tue May 19 10:12:55 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kyrylo Tkachov X-Patchwork-Id: 473798 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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id BFB181400B7 for ; Tue, 19 May 2015 20:13:16 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=nLfuJlFt; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:cc:subject:content-type; q=dns; s=default; b=xSLTDCPFmB1G9b8bdOFniKt0K74Tmhjescjv75VqyD1 T4psFzdAVdkPAS04BtDe43UaeVYOA4ok8qaVk+/x94rOWev5Z2zI0d5NMpw8PQ49 1vAQaZkaKZzWaZRPgL6Uk79RnJIs2w7zenStRVkxe0BnvbRfW6O19c5XSnid9Ft4 = 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 :message-id:date:from:mime-version:to:cc:subject:content-type; s=default; bh=rJABU5iKqDJjVYyADJe9qAtcKIg=; b=nLfuJlFtXtzdR5Qgj XlkKcWtM+a0/5HEjO+aXI+hJGxkXqqfk4G4BzANrHVA0y7K4odao1vp2A6AVR1Mh U+nhbTy28L+WHLazy/+aN1lssxE6rVh83KHZw/6K0hT32V3HmFkbfUc8GMdO/vUz fqncFb8GXaCujxerSo/qmZf7fA= Received: (qmail 130365 invoked by alias); 19 May 2015 10:13:07 -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 130337 invoked by uid 89); 19 May 2015 10:13:07 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, SPF_PASS autolearn=ham version=3.3.2 X-HELO: eu-smtp-delivery-143.mimecast.com Received: from eu-smtp-delivery-143.mimecast.com (HELO eu-smtp-delivery-143.mimecast.com) (207.82.80.143) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 19 May 2015 10:13:05 +0000 Received: from cam-owa2.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.140]) by uk-mta-2.uk.mimecast.lan; Tue, 19 May 2015 11:13:01 +0100 Received: from [10.2.207.50] ([10.1.2.79]) by cam-owa2.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 19 May 2015 11:12:55 +0100 Message-ID: <555B0CA7.4080306@arm.com> Date: Tue, 19 May 2015 11:12:55 +0100 From: Kyrill Tkachov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: GCC Patches CC: "gerald@pfeifer.com" Subject: [PATCH][wwwdocs] Mention native CPU detection in aarch64 notes for GCC 6 X-MC-Unique: lKZaNkYfRmqxaDKic3hHXg-1 X-IsSubscribed: yes Hi all, This patch adds a mention of the new native cpu detection feature in aarch64 GNU/Linux. Gerald, this is a patch against htdocs/gcc-6/changes.html and I thought I had seen the 'changes' link in gcc.gnu.org earlier but I don't see it now (there's only a release criteria link). Is this a bug? Ok to apply? Thanks, Kyrill Index: changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-6/changes.html,v retrieving revision 1.7 diff -U 3 -r1.7 changes.html --- changes.html 14 May 2015 22:07:28 -0000 1.7 +++ changes.html 19 May 2015 10:11:57 -0000 @@ -66,10 +66,19 @@ - - - +

New Targets and Target Specific Improvements

+

AArch64

+
    +
  • + The new command line options -march=native, + -mcpu=native and -mtune=native are now + available on native AArch64 GNU/Linux systems. Specifying + these options will cause GCC to auto-detect the host CPU and + rewrite these options to the optimal setting for that system. + If GCC is unable to detect the host CPU these options have no effect. +
  • +