summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config_help.txt2
-rw-r--r--configure.json4
2 files changed, 3 insertions, 3 deletions
diff --git a/config_help.txt b/config_help.txt
index f06584a480..6b1401c618 100644
--- a/config_help.txt
+++ b/config_help.txt
@@ -82,7 +82,7 @@ Build options:
-debug-and-release ... Build two versions of Qt, with and without
debugging turned on [yes] (Apple and Windows only)
-optimize-debug ...... Enable debug-friendly optimizations in debug builds
- [auto] (Not supported with MSVC)
+ [auto] (Not supported with MSVC or Clang toolchains)
-optimize-size ....... Optimize release builds for size instead of speed [no]
-optimized-tools ..... Build optimized host tools even in debug build [no]
-force-debug-info .... Create symbol files for release builds [no]
diff --git a/configure.json b/configure.json
index a91456aaf3..ce20aa3dc1 100644
--- a/configure.json
+++ b/configure.json
@@ -689,7 +689,7 @@
},
"optimize_debug": {
"label": "Optimize debug build",
- "condition": "!config.msvc && (features.debug || features.debug_and_release) && tests.optimize_debug",
+ "condition": "!config.msvc && !config.clang && (features.debug || features.debug_and_release) && tests.optimize_debug",
"output": [ "privateConfig" ]
},
"optimize_size": {
@@ -1312,7 +1312,7 @@ Configure with '-qreal float' to create a build that is binary-compatible with 5
{
"type": "feature",
"args": "optimize_debug",
- "condition": "!config.msvc && (features.debug || features.debug_and_release)"
+ "condition": "!config.msvc && !config.clang && (features.debug || features.debug_and_release)"
},
{
"type": "feature",