diff options
author | rdivacky <rdivacky@FreeBSD.org> | 2014-08-25 08:40:36 +0000 |
---|---|---|
committer | rdivacky <rdivacky@FreeBSD.org> | 2014-08-25 08:40:36 +0000 |
commit | 24aa428ec68c85329194ab74098a529cce003912 (patch) | |
tree | 9bfc1e18aad13eaea27ca89f4f224f4c98bff61a /lib/libc++ | |
parent | a8ed877a78d1c1e6eb7255fd3ab2e393aa408f54 (diff) | |
download | FreeBSD-src-24aa428ec68c85329194ab74098a529cce003912.zip FreeBSD-src-24aa428ec68c85329194ab74098a529cce003912.tar.gz |
The standard we compile libc++ with is called c++11 not c++0x.
Diffstat (limited to 'lib/libc++')
-rw-r--r-- | lib/libc++/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc++/Makefile b/lib/libc++/Makefile index 1e7dfaf..5f2c8e9 100644 --- a/lib/libc++/Makefile +++ b/lib/libc++/Makefile @@ -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} |