summaryrefslogtreecommitdiffstats
path: root/src/core/core_module.pro
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-05-21 12:33:59 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-05-21 13:15:05 +0200
commite710d15b7243f2fbc99f98c3ca79d325eb459ac7 (patch)
treec798248a0562d083fba2258bc8ca2bb0c84e8049 /src/core/core_module.pro
parent1d7aea38167805d1c6abd00ba2d84981af720c66 (diff)
Fix various remaining clang_cl building issues
Doesn't support /debug:fastlink, and we need to tell chromium we are using lld. Also fixes the wrong quoting as we need escaped quotes, not system quotes. Change-Id: I97e4294a358004df2f4c653cf74693fe2d40945f Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'src/core/core_module.pro')
-rw-r--r--src/core/core_module.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core_module.pro b/src/core/core_module.pro
index e2fa3494d..f9f72176f 100644
--- a/src/core/core_module.pro
+++ b/src/core/core_module.pro
@@ -60,7 +60,7 @@ osx {
# Remove unused functions and data in debug non-developer builds, because the binaries will
# be smaller in the shipped packages.
QMAKE_LFLAGS += /OPT:REF
- } else:CONFIG(debug, debug|release) {
+ } else:CONFIG(debug, debug|release):!clang_cl {
# Make sure to override qtbase's QMAKE_LFLAGS_DEBUG option in debug developer builds,
# because qmake chooses and overrides the option when it gets appended to QMAKE_LFLAGS in
# qtbase\mkspecs\features\default_post.prf, regardless of what Chromium passes back from GN.