Commit 265a5a6e authored by Morten Johan Sørvig's avatar Morten Johan Sørvig Committed by Fawzi Mohamed
Browse files

Don't disable C++11 on Mac OS X


On OS X, enabling C++11 has the side effect of switching
the standard library from libstdc++ to libc++. Qt 5.2
enables C++11 by default, which leads to a Qt build
that uses both standard libraries. This is something
we would like to avoid.

Change-Id: I0ad8fb550ef79ac37ac97a75799ac38aa19d39d4
Reviewed-by: default avatarFawzi Mohamed <fawzi.mohamed@digia.com>
Reviewed-by: default avatarMorten Johan Sørvig <morten.sorvig@digia.com>
Showing with 4 additions and 2 deletions
...@@ -76,7 +76,9 @@ integrity { ...@@ -76,7 +76,9 @@ integrity {
} }
# WebKit doesn't compile in C++0x mode # WebKit doesn't compile in C++0x mode
*-g++*:QMAKE_CXXFLAGS -= -std=c++0x -std=gnu++0x !mac {
CONFIG -= c++11 *-g++*:QMAKE_CXXFLAGS -= -std=c++0x -std=gnu++0x
CONFIG -= c++11
}
TR_EXCLUDE = $$WEBKITDIR/* TR_EXCLUDE = $$WEBKITDIR/*
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment