From 099f2868701932ee99b60d19429d9c43f96dcadc Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Thu, 19 Jan 2017 11:14:47 +0100 Subject: 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 Reviewed-by: Thiago Macieira --- configure.json | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'configure.json') 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": { -- cgit v1.2.3