svn commit: r270522 - head/lib/libc++

Roman Divacky rdivacky at FreeBSD.org
Mon Aug 25 08:40:37 UTC 2014


Author: rdivacky
Date: Mon Aug 25 08:40:36 2014
New Revision: 270522
URL: http://svnweb.freebsd.org/changeset/base/270522

Log:
  The standard we compile libc++ with is called c++11 not c++0x.

Modified:
  head/lib/libc++/Makefile

Modified: head/lib/libc++/Makefile
==============================================================================
--- head/lib/libc++/Makefile	Mon Aug 25 07:15:14 2014	(r270521)
+++ head/lib/libc++/Makefile	Mon Aug 25 08:40:36 2014	(r270522)
@@ -57,7 +57,7 @@ cxxrt_${_S}:
 WARNS=		0
 CFLAGS+=	-I${HDRDIR} -I${LIBCXXRTDIR} -nostdlib -DLIBCXXRT
 .if empty(CXXFLAGS:M-std=*)
-CXXFLAGS+=	-std=c++0x
+CXXFLAGS+=	-std=c++11
 .endif
 
 DPADD=		${LIBCXXRT}


More information about the svn-src-all mailing list