summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mkspecs/features/mac/default_post.prf13
1 files changed, 11 insertions, 2 deletions
diff --git a/mkspecs/features/mac/default_post.prf b/mkspecs/features/mac/default_post.prf
index c3addf9319..614b336f27 100644
--- a/mkspecs/features/mac/default_post.prf
+++ b/mkspecs/features/mac/default_post.prf
@@ -15,8 +15,17 @@ qt:!isEmpty(QT_CONFIG) {
contains(QT_CONFIG, x86_64):!contains(QT_CONFIG, x86):CONFIG += x86_64
}
- # Ensure that C++11 is always used when linking against a static Qt build
- contains(QT_CONFIG, static):contains(QT_CONFIG, c++11): CONFIG += c++11
+ contains(QT_CONFIG, static) {
+ # C++11 support means using libc++ instead of libstd++. As the
+ # two libraries are incompatible we need to ensure the end user
+ # project is built using the same C++11 support/no support as Qt.
+ contains(QT_CONFIG, c++11) {
+ CONFIG += c++11
+ } else: c++11 {
+ warning("Qt was not built with C++11 enabled, disabling feature")
+ CONFIG -= c++11
+ }
+ }
}
cache(QMAKE_XCODE_DEVELOPER_PATH, stash)