summaryrefslogtreecommitdiffstats
path: root/configure.json
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-01-19 11:14:47 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-01-27 15:08:57 +0000
commit099f2868701932ee99b60d19429d9c43f96dcadc (patch)
treeed0b4847d11e35072cb87f0b8b07e9217c07da3f /configure.json
parent02cc57f4edbae450ecfa8368052afa44f8aeee19 (diff)
Fix MIPS DSP configuration
The patch fixes a number of bugs in code, and removes dead logic clarifying that MIPS DSP, like ARM NEON, has no runtime detecton. Change-Id: If2f4eea68da5b2eaa80b8e9c8258206d8c1b7173 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'configure.json')
-rw-r--r--configure.json13
1 files changed, 7 insertions, 6 deletions
diff --git a/configure.json b/configure.json
index 7d04f0a516..e9ffc972ab 100644
--- a/configure.json
+++ b/configure.json
@@ -192,7 +192,7 @@
"detectPkgConfig": [ "cross_compile", "machineTuple" ],
"library": [ "pkg-config" ],
"getPkgConfigVariable": [ "pkg-config" ],
- "neon": [ "architecture" ]
+ "subarch": [ "architecture" ]
},
"testTypeAliases": {
@@ -379,17 +379,18 @@
},
"mips_dsp": {
"label": "MIPS DSP instructions",
- "type": "compile",
- "test": "unix/mips_dsp"
+ "type": "subarch",
+ "subarch": "dsp"
},
"mips_dspr2": {
"label": "MIPS DSPr2 instructions",
- "type": "compile",
- "test": "common/mips_dspr2"
+ "type": "subarch",
+ "subarch": "dspr2"
},
"neon": {
"label": "NEON instructions",
- "type": "neon"
+ "type": "subarch",
+ "subarch": "neon"
},
"mremap": {