9c6066fce6
Clang's libc++ does not support 10.6. Add mac-minimum-version.conf which sets the version to 10.6. Set the version to 10.7 in the clang-libx++* mkspecs. Change-Id: I494d0d24b0d73d9395e9d5406c8c63c9af87f8cc Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
20 lines
506 B
Plaintext
20 lines
506 B
Plaintext
#
|
|
# qmake configuration for Clang on OS X
|
|
#
|
|
|
|
MAKEFILE_GENERATOR = UNIX
|
|
CONFIG += app_bundle incremental global_init_link_order lib_version_first plugin_no_soname
|
|
QMAKE_INCREMENTAL_STYLE = sublib
|
|
|
|
include(../common/mac.conf)
|
|
include(../common/gcc-base-macx.conf)
|
|
include(../common/clang.conf)
|
|
include(../common/clang-mac.conf)
|
|
include(../common/mac-clang-libc++-minimum-version.conf)
|
|
|
|
QMAKE_OBJECTIVE_CFLAGS += -stdlib=libc++
|
|
QMAKE_CXXFLAGS += -stdlib=libc++
|
|
QMAKE_LFLAGS += -stdlib=libc++
|
|
|
|
load(qt_config)
|