From fb60156c3248a03c6c8c7155aa73976689b2d892 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Thu, 27 Oct 2011 09:36:56 -0700 Subject: uhd: added toolchain file for native arm neon build --- host/cmake/Toolchains/arm_cortex_a8_native.cmake | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 host/cmake/Toolchains/arm_cortex_a8_native.cmake diff --git a/host/cmake/Toolchains/arm_cortex_a8_native.cmake b/host/cmake/Toolchains/arm_cortex_a8_native.cmake new file mode 100644 index 000000000..7dbb80049 --- /dev/null +++ b/host/cmake/Toolchains/arm_cortex_a8_native.cmake @@ -0,0 +1,8 @@ +######################################################################## +# Toolchain file for building native on a ARM Cortex A8 w/ NEON +# Usage: cmake -DCMAKE_TOOLCHAIN_FILE= +######################################################################## +set(CMAKE_CXX_COMPILER g++) +set(CMAKE_C_COMPILER gcc) +set(CMAKE_CXX_FLAGS "-march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp") +set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS}) #same flags for C sources -- cgit v1.2.3