| Index: src/flag-definitions.h
|
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h
|
| index 1d83481f9e4c1b196a381e0db1b75d5e97019abd..16fdfa855af44af6ea7ad9e0a659933cfe829f2f 100644
|
| --- a/src/flag-definitions.h
|
| +++ b/src/flag-definitions.h
|
| @@ -105,22 +105,22 @@ struct MaybeBoolFlag {
|
| };
|
| #endif
|
|
|
| -#if (defined CAN_USE_VFP3_INSTRUCTIONS) || !(defined ARM_TEST)
|
| +#if (defined CAN_USE_VFP3_INSTRUCTIONS) || !(defined ARM_TEST_NO_FEATURE_PROBE)
|
| # define ENABLE_VFP3_DEFAULT true
|
| #else
|
| # define ENABLE_VFP3_DEFAULT false
|
| #endif
|
| -#if (defined CAN_USE_ARMV7_INSTRUCTIONS) || !(defined ARM_TEST)
|
| +#if (defined CAN_USE_ARMV7_INSTRUCTIONS) || !(defined ARM_TEST_NO_FEATURE_PROBE)
|
| # define ENABLE_ARMV7_DEFAULT true
|
| #else
|
| # define ENABLE_ARMV7_DEFAULT false
|
| #endif
|
| -#if (defined CAN_USE_VFP32DREGS) || !(defined ARM_TEST)
|
| +#if (defined CAN_USE_VFP32DREGS) || !(defined ARM_TEST_NO_FEATURE_PROBE)
|
| # define ENABLE_32DREGS_DEFAULT true
|
| #else
|
| # define ENABLE_32DREGS_DEFAULT false
|
| #endif
|
| -#if (defined CAN_USE_NEON) || !(defined ARM_TEST)
|
| +#if (defined CAN_USE_NEON) || !(defined ARM_TEST_NO_FEATURE_PROBE)
|
| # define ENABLE_NEON_DEFAULT true
|
| #else
|
| # define ENABLE_NEON_DEFAULT false
|
|
|