From patchwork Sun Aug 31 20:37:12 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tobias Burnus X-Patchwork-Id: 384583 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 AF8FE14012B for ; Mon, 1 Sep 2014 06:37:34 +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 :message-id:date:from:mime-version:to:subject:content-type; q= dns; s=default; b=GkOJpvUjXYlSzjB8b4oc2vHFXUMHulaWWwC/y+vY2GlJQb +gyLVNaEvL6pIp95i9BwHpGJALf3bvGqI2fLRi9zhMk/aZOvY8tFySd9eaBBRh1+ LMg0+9Xhd2Z3BcgP99IbP/u63sneuKd1mq4/qUFZkqJ1fVpU2Nz4ZzvAyCKP4= 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:subject:content-type; s= default; bh=eLYYDIIIeVCidjj19ZRnAfmqA24=; b=vC/1TZ0gNhNYNJqERTfc w54Dq0QaGzD0fFlN+GAFEG2+1dCGKNpibKUIsbWyaGdGCqBdT82vnGimoC7QxbeF gRI5pxU7zYZnWw2pHpPfyp3x3fc/Lk3rzAB0lEvsb54jig9uFrJtYToodlqnk974 zEQeDHNTQW9SE3Ku+CQp7sY= Received: (qmail 29893 invoked by alias); 31 Aug 2014 20:37:20 -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 29875 invoked by uid 89); 31 Aug 2014 20:37:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mx02.qsc.de Received: from mx02.qsc.de (HELO mx02.qsc.de) (213.148.130.14) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Sun, 31 Aug 2014 20:37:18 +0000 Received: from tux.net-b.de (port-92-194-32-4.dynamic.qsc.de [92.194.32.4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx02.qsc.de (Postfix) with ESMTPSA id 3380C247BD; Sun, 31 Aug 2014 22:37:14 +0200 (CEST) Message-ID: <54038778.7050308@net-b.de> Date: Sun, 31 Aug 2014 22:37:12 +0200 From: Tobias Burnus User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.7.0 MIME-Version: 1.0 To: gcc-patches , gfortran , Gerald Pfeifer Subject: [wwwdocs, committed] gcc-5/changes.html: Update Fortran section Dear all, I have committed the attached patch. Comment and suggestions are welcome! See also: https://gcc.gnu.org/gcc-5/changes.html#fortran Tobias Index: changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v retrieving revision 1.7 diff -u -p -r1.7 changes.html --- changes.html 26 Aug 2014 17:18:40 -0000 1.7 +++ changes.html 31 Aug 2014 20:34:49 -0000 @@ -91,6 +91,18 @@

Fortran

    +
  • Incomplete support for colorizing diagnostics emitted by gfortran has + been added. The -fdiagnostics-color=auto will enable it when outputting to + terminals, -fdiagnostics-color=always unconditionally. The + GCC_COLORS environment variable can be used to customize the + colors or disable coloring. If GCC_COLORS variable is present + in the environment, the default is -fdiagnostics-color=auto, + otherwise -fdiagnostics-color=never.
  • +
  • The -Wuse-without-only option has been added to warn when a + USE statement has no ONLY qualifier and, thus, + implicitly imports all public entities of the used module.
  • Fortran 2003:
    • The intrinsic IEEE modules (IEEE_FEATURES, @@ -99,11 +111,14 @@
  • Fortran 2008:
      -
    • Coarrays: Full experimental support of Fortran 2008's coarrays with +
    • Coarrays: Full + experimental support of Fortran 2008's coarrays with -fcoarray=lib except for locking and allocatable/pointer - components of derived-type coarrays. Note that GCC currently only ships - with a library which only supports a single image - (libcaf_single).
    • + components of derived-type coarrays. GCC currently only ships with a + single-image library (libcaf_single), but + mult-image support based on MPI and GASNet is provided by the libraries + of the OpenCoarrays project. +
  • TS18508 Additional Parallel Features in Fortran: