Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Jan 2016 22:45:44 +0000 (UTC)
From:      Brad Davis <brd@FreeBSD.org>
To:        doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org
Subject:   svn commit: r47955 - head/en_US.ISO8859-1/books/porters-handbook/uses
Message-ID:  <201601052245.u05Mjirr001218@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brd
Date: Tue Jan  5 22:45:44 2016
New Revision: 47955
URL: https://svnweb.freebsd.org/changeset/doc/47955

Log:
  Add c++14 lang bits and improve wording around supporting compiler features

Modified:
  head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml

Modified: head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml	Tue Jan  5 19:02:42 2016	(r47954)
+++ head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml	Tue Jan  5 22:45:44 2016	(r47955)
@@ -160,20 +160,20 @@
   <sect1 xml:id="uses-compiler">
     <title><literal>compiler</literal></title>
 
-    <para>Possible arguments: (none), <literal>c++0x</literal>,
+    <para>Possible arguments: (none), <literal>c++14-lang</literal>,
       <literal>c++11-lang</literal>, <literal>gcc-c++11-lib</literal>,
-      <literal>c++11-lib</literal>, <literal>c11</literal>,
-      <literal>openmp</literal>, <literal>nestedfct</literal>,
-      <literal>features</literal></para>
+      <literal>c++11-lib</literal>, <literal>c++0x</literal>,
+      <literal>c11</literal>, <literal>openmp</literal>,
+      <literal>nestedfct</literal>, <literal>features</literal></para>
 
     <para>Determines which compiler to use based on any given wishes.
-      Use <literal>c++11-lang</literal> if the port needs a
-      C++11-capable compiler, <literal>gcc-c++11-lib</literal> if the
+      Use <literal>c++14-lang</literal> if the port needs a
+      C++14-capable compiler, <literal>gcc-c++11-lib</literal> if the
       port needs the <command>g++</command> compiler with a C++11
-      library, and <literal>c++11-lib</literal> if the port also needs
+      library, or <literal>c++11-lib</literal> if the port needs
       a C++11-ready standard library.  If the port needs a compiler
-      understanding C++0X, C11, OpenMP, or nested functions, the
-      corresponding parameters can be used.  Use
+      understanding C++11, C++0X, C11, OpenMP, or nested functions,
+      the corresponding parameters can be used.  Use
       <literal>features</literal> to request a list of features
       supported by the default compiler.  After including
       <filename>bsd.port.pre.mk</filename> the port can inspect the



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601052245.u05Mjirr001218>