CMSIS-DSP: Corrected build issue with Neon.

pull/19/head
Christophe Favergeon 6 years ago
parent 90a6125127
commit 93196c0fd7

@ -216,6 +216,7 @@ SECTIONS
. = ALIGN(8); . = ALIGN(8);
__end__ = .; __end__ = .;
PROVIDE(end = .); PROVIDE(end = .);
__HeapBase = .;
. = . + __HEAP_SIZE; . = . + __HEAP_SIZE;
. = ALIGN(8); . = ALIGN(8);
__HeapLimit = .; __HeapLimit = .;

@ -23,7 +23,8 @@ if (AUTOVECTORIZE)
endif() endif()
if (NEON OR NEONEXPERIMENTAL) if (NEON OR NEONEXPERIMENTAL)
target_include_directories(${project} PRIVATE "${root}/CMSIS/DSP/ComputeLibrary/Include") # Used in arm_vec_math.h
target_include_directories(${project} PUBLIC "${root}/CMSIS/DSP/ComputeLibrary/Include")
endif() endif()
if (MVEFLOAT16) if (MVEFLOAT16)

@ -7,7 +7,7 @@ SET(CORTEXM ON)
option(HARDFP "Hard floating point" ON) option(HARDFP "Hard floating point" ON)
option(LITTLEENDIAN "Little endian" ON) option(LITTLEENDIAN "Little endian" ON)
option(FASTMATHCOMPUTATIONS "Fast Math enabled" OFF) option(FASTMATHCOMPUTATIONS "Fast Math enabled" OFF)
option(FLOAT16 "Scalar float16 supported" OFF) option(FLOAT16 "Scalar float16 supported by the core" OFF)
option(HYBRID "Hybrid instrinsics" ON) option(HYBRID "Hybrid instrinsics" ON)
# More detailed identification for benchmark results # More detailed identification for benchmark results

Loading…
Cancel
Save