summaryrefslogtreecommitdiffstats
path: root/configure.json
diff options
context:
space:
mode:
Diffstat (limited to 'configure.json')
-rw-r--r--configure.json20
1 files changed, 19 insertions, 1 deletions
diff --git a/configure.json b/configure.json
index 07549e0b7e..9ae3cc284a 100644
--- a/configure.json
+++ b/configure.json
@@ -218,7 +218,7 @@
},
"testTypeAliases": {
- "compile": [ "library", "architecture" ]
+ "compile": [ "library", "architecture", "x86SimdAlways" ]
},
"tests": {
@@ -563,6 +563,11 @@
"test": "avx512",
"args": "AVX512=VBMI"
},
+ "x86SimdAlways": {
+ "label": "Intrinsics without -mXXX argument",
+ "type": "x86SimdAlways",
+ "test": "x86_simd"
+ },
"mips_dsp": {
"label": "MIPS DSP instructions",
"type": "subarch",
@@ -1111,6 +1116,14 @@
{ "type": "define", "name": "QT_COMPILER_SUPPORTS_SHA", "value": 1 }
]
},
+ "x86SimdAlways": {
+ "label": "Intrinsics without -mXXX option",
+ "condition": "(arch.i386 || arch.x86_64) && tests.x86SimdAlways",
+ "output": [
+ "privateConfig",
+ { "type": "define", "name": "QT_COMPILER_SUPPORTS_SIMD_ALWAYS", "value": 1 }
+ ]
+ },
"mips_dsp": {
"label": "DSP",
"condition": "arch.mips && tests.mips_dsp",
@@ -1399,6 +1412,11 @@ Configure with '-qreal float' to create a build that is binary-compatible with 5
},
{
"type": "feature",
+ "args": "x86SimdAlways",
+ "condition": "(arch.i386 || arch.x86_64) && !config.msvc"
+ },
+ {
+ "type": "feature",
"args": "neon",
"condition": "arch.arm || arch.arm64"
},