For the clang / windows combination, no. I assume that you can easily change win32-g ++ to win32-clang, though, following the differences between linux-g ++ and linux-clang:
diff -w -u ../linux-g++/qmake.conf ./qmake.conf
@@ -1,12 +1,16 @@
#
-# qmake configuration for linux-g++
+# qmake configuration for linux-clang
#
MAKEFILE_GENERATOR = UNIX
-CONFIG += incremental gdb_dwarf_index
+CONFIG += incremental
+
QMAKE_INCREMENTAL_STYLE = sublib
include(../common/linux.conf)
include(../common/gcc-base-unix.conf)
-include(../common/g++-unix.conf)
+include(../common/clang.conf)
+
+QMAKE_LFLAGS += -ccc-gcc-name g++
+
load(qt_config)
diff -w -u ../linux-g++/qplatformdefs.h ./qplatformdefs.h
@@ -67,6 +66,7 @@
#include <grp.h>
#include <pwd.h>
#include <signal.h>
+#include <dlfcn.h>
#include <sys/types.h>
#include <sys/ioctl.h>
source
share