Windowsでgccを使用してqtをビルドする場合、configureオプションは-platform win32-g ++ですが、clangを使用してqtをビルドする場合のオプションは何ですか?
質問する
2791 次
1 に答える
2
clang/windowsの組み合わせには何もありません。linux-g ++とlinux-clangの違いに従って、win32-g++をwin32-clangに簡単に変更できると思います。
diff -w -u ../linux-g++/qmake.conf ./qmake.conf
--- ../linux-g++/qmake.conf 2012-11-20 16:38:28.000000000 +0100
+++ ./qmake.conf 2012-11-20 16:38:28.000000000 +0100
@@ -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
--- ../linux-g++/qplatformdefs.h 2013-01-28 17:42:15.170318229 +0100
+++ ./qplatformdefs.h 2013-01-28 17:42:15.170318229 +0100
@@ -67,6 +66,7 @@
#include <grp.h>
#include <pwd.h>
#include <signal.h>
+#include <dlfcn.h>
#include <sys/types.h>
#include <sys/ioctl.h>
于 2013-01-29T09:15:47.830 に答える