You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- set(ARM_CROSS_BUILD_ARCH armv7)
- set(CMAKE_C_COMPILER "arm-linux-gnueabihf-gcc")
- set(CMAKE_CXX_COMPILER "arm-linux-gnueabihf-g++")
- set(CMAKE_C_FLAGS "-mfloat-abi=hard -mfpu=neon-vfpv4 -Wno-psabi")
- set(CMAKE_CXX_FLAGS "-mfloat-abi=hard -mfpu=neon-vfpv4 -Wno-psabi")
- if("$ENV{FORCE_CHECK_UNUSED_PARAMETER}" STREQUAL "true")
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror=unused-parameter")
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror=unused-parameter")
- endif()
- set(CMAKE_STRIP "arm-linux-gnueabihf-strip")
- set(CMAKE_SYSTEM_PROCESSOR armv7)
- set(CMAKE_SYSTEM_NAME Linux)
|