mirror of
https://github.com/apache/nuttx.git
synced 2026-05-15 12:36:49 +08:00
6036a318f4
when we build mbedtls in vela with ghs compiler, the mbedtls need to access __ARM_ARCH and __ARM_FEATURE_DSP, and to construct the inline asm code based on these two macros. With ghs compiler, these two macros are not defined, and will be evaluated as 0 by default, and thus will using to wrong inline asm code, in order to handle this issue, we need to add conversion between the ghs and gcc with __ARM_ARCH, __ARM_FEATURE_DSP Signed-off-by: guoshichao <guoshichao@xiaomi.com>