mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 09:22:18 +00:00
* Cygwin: repaired NuttX build after 1f63d85869
all the NuttX specific WINTOOL define handling was skiped in cmake Make.defs generation
The Nuttx build is makfile based and needs its cygwin treatment
Additionally the ${PX4_SOURCE_DIR}/src/include which was added through cmake needs path conversion
The two root causes for the special handling are:
- ARM GCC for Windows doesn't support cygwin paths passed as an argument
so they need to be either relative or converted via cypath tool
- Symbolic links are totally different under Windows and because NuttX uses them extensively
it has special handling scripts that need to be fed with the correct defines
* Cygwin: NuttX include paths all converted in Make.defs.in
differentiate between WINTOOL define (MSYS & cygwin) and cygwin using uname command:
- MSYS needs symbolic link handling for ARM GCC but no path conversion
- Cygwin needs both
102 lines
2.9 KiB
CMake
102 lines
2.9 KiB
CMake
# defines:
|
|
#
|
|
# NM
|
|
# OBJCOPY
|
|
# LD
|
|
# CXX_COMPILER
|
|
# C_COMPILER
|
|
# CMAKE_SYSTEM_NAME
|
|
# CMAKE_SYSTEM_VERSION
|
|
# GENROMFS
|
|
# LINKER_FLAGS
|
|
# CMAKE_EXE_LINKER_FLAGS
|
|
# CMAKE_FIND_ROOT_PATH
|
|
# CMAKE_FIND_ROOT_PATH_MODE_PROGRAM
|
|
# CMAKE_FIND_ROOT_PATH_MODE_LIBRARY
|
|
# CMAKE_FIND_ROOT_PATH_MODE_INCLUDE
|
|
|
|
include(CMakeForceCompiler)
|
|
|
|
# this one is important
|
|
set(CMAKE_SYSTEM_NAME Generic)
|
|
|
|
# this one not so much
|
|
set(CMAKE_SYSTEM_VERSION 1)
|
|
|
|
# specify the cross compiler
|
|
find_program(C_COMPILER arm-none-eabi-gcc)
|
|
if(NOT C_COMPILER)
|
|
message(FATAL_ERROR "could not find arm-none-eabi-gcc compiler")
|
|
endif()
|
|
cmake_force_c_compiler(${C_COMPILER} GNU)
|
|
|
|
find_program(CXX_COMPILER arm-none-eabi-g++)
|
|
if(NOT CXX_COMPILER)
|
|
message(FATAL_ERROR "could not find arm-none-eabi-g++ compiler")
|
|
endif()
|
|
cmake_force_cxx_compiler(${CXX_COMPILER} GNU)
|
|
|
|
# compiler tools
|
|
foreach(tool objcopy nm ld)
|
|
string(TOUPPER ${tool} TOOL)
|
|
find_program(${TOOL} arm-none-eabi-${tool})
|
|
if(NOT ${TOOL})
|
|
message(FATAL_ERROR "could not find ${tool}")
|
|
endif()
|
|
endforeach()
|
|
|
|
# optional compiler tools
|
|
foreach(tool gdb gdbtui)
|
|
string(TOUPPER ${tool} TOOL)
|
|
find_program(${TOOL} arm-none-eabi-${tool})
|
|
if(NOT ${TOOL})
|
|
#message(STATUS "could not find ${tool}")
|
|
endif()
|
|
endforeach()
|
|
|
|
# os tools
|
|
foreach(tool echo patch grep rm mkdir nm genromfs cp touch make unzip)
|
|
string(TOUPPER ${tool} TOOL)
|
|
find_program(${TOOL} ${tool})
|
|
if(NOT ${TOOL})
|
|
message(FATAL_ERROR "could not find ${tool}")
|
|
endif()
|
|
endforeach()
|
|
|
|
# optional os tools
|
|
foreach(tool ddd)
|
|
string(TOUPPER ${tool} TOOL)
|
|
find_program(${TOOL} ${tool})
|
|
if(NOT ${TOOL})
|
|
#message(STATUS "could not find ${tool}")
|
|
endif()
|
|
endforeach()
|
|
|
|
set(cpu_flags)
|
|
if (CMAKE_SYSTEM_PROCESSOR STREQUAL "cortex-m7")
|
|
set(cpu_flags "-mcpu=cortex-m7 -mthumb -mfpu=fpv5-sp-d16 -mfloat-abi=hard")
|
|
elseif (CMAKE_SYSTEM_PROCESSOR STREQUAL "cortex-m4")
|
|
set(cpu_flags "-mcpu=cortex-m4 -mthumb -march=armv7e-m -mfpu=fpv4-sp-d16 -mfloat-abi=hard")
|
|
elseif (CMAKE_SYSTEM_PROCESSOR STREQUAL "cortex-m3")
|
|
set(cpu_flags "-mcpu=cortex-m3 -mthumb -march=armv7-m")
|
|
else ()
|
|
message(FATAL_ERROR "Processor not recognised in toolchain file")
|
|
endif()
|
|
|
|
set(c_flags "-fno-common -ffunction-sections -fdata-sections")
|
|
set(cxx_flags "-fno-common -ffunction-sections -fdata-sections")
|
|
|
|
set(CMAKE_C_FLAGS "${c_flags} ${cpu_flags}" CACHE INTERNAL "" FORCE)
|
|
set(CMAKE_CXX_FLAGS "${cxx_flags} ${cpu_flags}" CACHE INTERNAL "" FORCE)
|
|
set(CMAKE_ASM_FLAGS "${cpu_flags} -D__ASSEMBLY__ " CACHE INTERNAL "" FORCE)
|
|
set(CMAKE_EXE_LINKER_FLAGS "${cpu_flags} -nodefaultlibs -nostdlib -Wl,--warn-common,--gc-sections" CACHE INTERNAL "" FORCE)
|
|
|
|
# where is the target environment
|
|
set(CMAKE_FIND_ROOT_PATH get_file_component(${C_COMPILER} PATH))
|
|
|
|
# search for programs in the build host directories
|
|
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
|
# for libraries and headers in the target directories
|
|
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
|
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|