mirror of
				https://github.com/gnss-sdr/gnss-sdr
				synced 2025-10-31 07:13:03 +00:00 
			
		
		
		
	Merge branch 'toolchains' into next
Fixes building in some ARM-based devices
This commit is contained in:
		| @@ -515,7 +515,9 @@ if(NOT OS_IS_MACOSX) | ||||
|             set(CMAKE_NO_SYSTEM_FROM_IMPORTED TRUE) | ||||
|         endif() | ||||
|     else() | ||||
|         include(TestForARM) | ||||
|         if(NOT IS_ARM) | ||||
|             include(TestForARM) | ||||
|         endif() | ||||
|     endif() | ||||
| endif() | ||||
|  | ||||
| @@ -968,7 +970,6 @@ if(NOT VOLKGNSSSDR_FOUND) | ||||
|         -DCMAKE_INSTALL_PREFIX=${CMAKE_CURRENT_BINARY_DIR}/volk_gnsssdr_module/install | ||||
|         -DENABLE_STATIC_LIBS=ON | ||||
|         -DENABLE_PROFILING=${ENABLE_PROFILING} | ||||
|         -DCMAKE_INCLUDE_PATH=${Boost_INCLUDE_DIR} | ||||
|         -DENABLE_ORC=OFF | ||||
|         ${STRIP_VOLK_GNSSSDR_PROFILE} | ||||
|         ${USE_THIS_PYTHON} | ||||
| @@ -978,6 +979,12 @@ if(NOT VOLKGNSSSDR_FOUND) | ||||
|             -DCMAKE_TOOLCHAIN_FILE=${CMAKE_CURRENT_SOURCE_DIR}/cmake/Toolchains/oe-sdk_cross.cmake | ||||
|             -DCROSSCOMPILE_MULTILIB=TRUE | ||||
|         ) | ||||
|     else() | ||||
|         if(CMAKE_TOOLCHAIN_FILE) | ||||
|             set(VOLK_GNSSSDR_CMAKE_ARGS ${VOLK_GNSSSDR_CMAKE_ARGS} | ||||
|                 -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE} | ||||
|             ) | ||||
|         endif() | ||||
|     endif() | ||||
|     if(CMAKE_VERSION VERSION_LESS 3.2) | ||||
|         ExternalProject_Add(volk_gnsssdr_module | ||||
| @@ -1770,6 +1777,10 @@ if(NOT PUGIXML_FOUND) | ||||
|     if(DEFINED ENV{OECORE_TARGET_SYSROOT}) | ||||
|         set(PUGIXML_COMPILER "") | ||||
|         set(TOOLCHAIN_ARG "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_CURRENT_SOURCE_DIR}/cmake/Toolchains/oe-sdk_cross.cmake") | ||||
|     else() | ||||
|         if(CMAKE_TOOLCHAIN_FILE) | ||||
|             set(TOOLCHAIN_ARG "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}") | ||||
|         endif() | ||||
|     endif() | ||||
|     if(CMAKE_VERSION VERSION_LESS 3.2) | ||||
|         ExternalProject_Add(pugixml-${GNSSSDR_PUGIXML_LOCAL_VERSION} | ||||
| @@ -2486,9 +2497,21 @@ if((CMAKE_CXX_COMPILER_ID STREQUAL "GNU") AND NOT WIN32) | ||||
|     if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "5.0") | ||||
|         add_compile_options(-Wno-missing-field-initializers) | ||||
|     endif() | ||||
|     if(CMAKE_CROSSCOMPILING) | ||||
|     if(CMAKE_CROSSCOMPILING OR NOT ENABLE_PACKAGING) | ||||
|         add_compile_options(-Wno-psabi) | ||||
|     endif() | ||||
|     if(IS_ARM) | ||||
|         if((CMAKE_CXX_COMPILER_VERSION VERSION_GREATER "7.1.0") AND (CMAKE_VERSION VERSION_GREATER "3.1")) | ||||
|             if(CMAKE_CXX_STANDARD VERSION_LESS 17) | ||||
|                 set(CXX_ALIGN_FLAG -faligned-new) | ||||
|                 if(NOT (CMAKE_VERSION VERSION_LESS "3.3")) | ||||
|                     add_compile_options("$<$<COMPILE_LANGUAGE:CXX>:${CXX_ALIGN_FLAG}>") | ||||
|                 else() | ||||
|                     add_compile_options("$<$<STREQUAL:$<TARGET_PROPERTY:LINKER_LANGUAGE>,CXX>:${CXX_ALIGN_FLAG}>") | ||||
|                 endif() | ||||
|             endif() | ||||
|         endif() | ||||
|     endif() | ||||
| endif() | ||||
| if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") | ||||
|     if(NOT (CMAKE_VERSION VERSION_LESS "3.3")) | ||||
| @@ -2501,23 +2524,30 @@ endif() | ||||
| # Processor-architecture related flags | ||||
| # See https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html | ||||
| if((CMAKE_CXX_COMPILER_ID STREQUAL "GNU") AND NOT WIN32) | ||||
|     if(OS_IS_MACOSX) | ||||
|         add_compile_options(-march=corei7 -mfpmath=sse) | ||||
|     else() | ||||
|         if(NOT ENABLE_GENERIC_ARCH) | ||||
|     if(NOT ENABLE_GENERIC_ARCH) | ||||
|         if(IS_ARM) | ||||
|             # ARM-specific options | ||||
|             # See https://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html | ||||
|             if(NOT CMAKE_CROSSCOMPILING AND NOT CMAKE_TOOLCHAIN_FILE) | ||||
|                 add_compile_options(-mtune=native) | ||||
|             endif() | ||||
|         else() | ||||
|             add_compile_options(-march=native) | ||||
|         endif() | ||||
|     endif() | ||||
| endif() | ||||
| if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") | ||||
|     if(NOT ENABLE_GENERIC_ARCH) | ||||
|         if(OS_IS_MACOSX) | ||||
|             add_compile_options(-march=native) | ||||
|         else() | ||||
|             if(IS_ARM) | ||||
|                 # ARM-specific options | ||||
|                 # See https://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html | ||||
|                 if(NOT CMAKE_CROSSCOMPILING) | ||||
|                     if(ARM_VERSION STREQUAL "arm") | ||||
|                         # Unknown arm version - try our best to detect | ||||
|                         add_compile_options(-mcpu=native) | ||||
|                     else() | ||||
|                         add_compile_options(-march=${ARM_VERSION}) | ||||
|                     endif() | ||||
|                 if(NOT CMAKE_CROSSCOMPILING AND NOT CMAKE_TOOLCHAIN_FILE) | ||||
|                     add_compile_options(-mcpu=native) | ||||
|                 endif() | ||||
|             else() | ||||
|                 add_compile_options(-march=native -mfpmath=sse) | ||||
|                 add_compile_options(-march=native) | ||||
|             endif() | ||||
|         endif() | ||||
|     endif() | ||||
|   | ||||
| @@ -23,80 +23,103 @@ | ||||
| ############################################################################## | ||||
|  | ||||
| if(__TEST_FOR_ARM_INCLUDED) | ||||
|   return() | ||||
|     return() | ||||
| endif() | ||||
| set(__TEST_FOR_ARM_INCLUDED TRUE) | ||||
|  | ||||
| # Function checks if the input string defines ARM version and sets the | ||||
| # output variable if found. | ||||
| function(check_arm_version ppdef input_string version output_var) | ||||
|   string(REGEX MATCH "${ppdef}"  _VERSION_MATCH "${input_string}") | ||||
|   if(NOT _VERSION_MATCH STREQUAL "") | ||||
|     set(${output_var} "${version}" PARENT_SCOPE) | ||||
|   endif() | ||||
|     string(REGEX MATCH "${ppdef}"  _VERSION_MATCH "${input_string}") | ||||
|     if(NOT _VERSION_MATCH STREQUAL "") | ||||
|         set(${output_var} "${version}" PARENT_SCOPE) | ||||
|     endif() | ||||
| endfunction() | ||||
|  | ||||
| message(STATUS "Checking for ARM") | ||||
|  | ||||
| set(IS_ARM NO) | ||||
| set(IS_ARM FALSE) | ||||
| set(ARM_VERSION "") | ||||
|  | ||||
| if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") | ||||
|   execute_process(COMMAND echo "int main(){}" | ||||
|                   COMMAND ${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_ARG1} -dM -E - | ||||
|                   OUTPUT_VARIABLE TEST_FOR_ARM_RESULTS) | ||||
|  | ||||
|   string(REGEX MATCH "__arm" ARM_FOUND "${TEST_FOR_ARM_RESULTS}") | ||||
|   if(ARM_FOUND STREQUAL "") | ||||
|     string(REGEX MATCH "__aarch64" ARM_FOUND "${TEST_FOR_ARM_RESULTS}") | ||||
|   endif() | ||||
|  | ||||
|   if(NOT ARM_FOUND STREQUAL "") | ||||
|     set(IS_ARM YES) | ||||
|     message(STATUS "ARM system detected") | ||||
|  | ||||
|     # detect the version | ||||
|     check_arm_version("__ARM_ARCH_2__" ${TEST_FOR_ARM_RESULTS} "armv2" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_2A__" ${TEST_FOR_ARM_RESULTS} "armv2a" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_3__" ${TEST_FOR_ARM_RESULTS} "armv3" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_3M__" ${TEST_FOR_ARM_RESULTS} "armv3m" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_4__" ${TEST_FOR_ARM_RESULTS} "armv4" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_4T__" ${TEST_FOR_ARM_RESULTS} "armv4t" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_5__" ${TEST_FOR_ARM_RESULTS} "armv5" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_5T__" ${TEST_FOR_ARM_RESULTS} "armv5t" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_5E__" ${TEST_FOR_ARM_RESULTS} "armv5e" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_5TE__" ${TEST_FOR_ARM_RESULTS} "armv5te" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_6__" ${TEST_FOR_ARM_RESULTS} "armv6" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_6J__" ${TEST_FOR_ARM_RESULTS} "armv6j" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_6K__" ${TEST_FOR_ARM_RESULTS} "armv6k" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_6T2__" ${TEST_FOR_ARM_RESULTS} "armv6t2" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_6Z__" ${TEST_FOR_ARM_RESULTS} "armv6z" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_6ZK__" ${TEST_FOR_ARM_RESULTS} "armv6zk" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_6M__" ${TEST_FOR_ARM_RESULTS} "armv6-m" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_7__" ${TEST_FOR_ARM_RESULTS} "armv7" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_7A__" ${TEST_FOR_ARM_RESULTS} "armv7-a" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_7M__" ${TEST_FOR_ARM_RESULTS} "armv7-m" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_7R__" ${TEST_FOR_ARM_RESULTS} "armv7-r" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_7EM_" ${TEST_FOR_ARM_RESULTS} "armv7e-m" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_7VE__" ${TEST_FOR_ARM_RESULTS} "armv7ve" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_8A__" ${TEST_FOR_ARM_RESULTS} "armv8-a" ARM_VERSION) | ||||
|     check_arm_version("__ARM_ARCH_8A" ${TEST_FOR_ARM_RESULTS} "armv8-a" ARM_VERSION) | ||||
|  | ||||
|     # anything else just define as arm | ||||
|     if(ARM_VERSION STREQUAL "") | ||||
|       message(STATUS "Couldn't detect ARM version. Setting to 'arm'") | ||||
|       set(ARM_VERSION "arm") | ||||
|     else() | ||||
|       message(STATUS "ARM version ${ARM_VERSION} detected") | ||||
|     endif() | ||||
|   else() | ||||
|     message(STATUS "System is not ARM") | ||||
|   endif() | ||||
|  | ||||
| if(ENABLE_PACKAGING) | ||||
|     set(VERBOSE_BUILDING "-v") | ||||
| else() | ||||
|   # TODO: Other compilers | ||||
|   message(STATUS "Not detecting ARM on non-GNUCXX compiler. Defaulting to false") | ||||
|   message(STATUS "If you are compiling for ARM, set IS_ARM=ON manually") | ||||
|     set(VERBOSE_BUILDING "") | ||||
| endif() | ||||
|  | ||||
| if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") | ||||
|     execute_process(COMMAND echo "int main(){}" | ||||
|         COMMAND ${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_ARG1} -dM ${VERBOSE_BUILDING} -E - | ||||
|         OUTPUT_VARIABLE TEST_FOR_ARM_RESULTS | ||||
|     ) | ||||
|  | ||||
|     string(REGEX MATCH "__arm" ARM_FOUND "${TEST_FOR_ARM_RESULTS}") | ||||
|     if(ARM_FOUND STREQUAL "") | ||||
|         string(REGEX MATCH "__aarch64" ARM_FOUND "${TEST_FOR_ARM_RESULTS}") | ||||
|     endif() | ||||
|     if(ARM_FOUND STREQUAL "") | ||||
|         if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "arm") | ||||
|             set(ARM_FOUND ${CMAKE_HOST_SYSTEM_PROCESSOR}) | ||||
|         endif() | ||||
|     endif() | ||||
|  | ||||
|     if(NOT ARM_FOUND STREQUAL "") | ||||
|         set(IS_ARM TRUE) | ||||
|         message(STATUS "ARM system detected.") | ||||
|  | ||||
|         # detect the version | ||||
|         check_arm_version("__ARM_ARCH_2__" ${TEST_FOR_ARM_RESULTS} "armv2" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_2A__" ${TEST_FOR_ARM_RESULTS} "armv2a" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_3__" ${TEST_FOR_ARM_RESULTS} "armv3" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_3M__" ${TEST_FOR_ARM_RESULTS} "armv3m" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_4__" ${TEST_FOR_ARM_RESULTS} "armv4" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_4T__" ${TEST_FOR_ARM_RESULTS} "armv4t" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_5__" ${TEST_FOR_ARM_RESULTS} "armv5" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_5T__" ${TEST_FOR_ARM_RESULTS} "armv5t" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_5E__" ${TEST_FOR_ARM_RESULTS} "armv5e" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_5TE__" ${TEST_FOR_ARM_RESULTS} "armv5te" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_6__" ${TEST_FOR_ARM_RESULTS} "armv6" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_6J__" ${TEST_FOR_ARM_RESULTS} "armv6j" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_6K__" ${TEST_FOR_ARM_RESULTS} "armv6k" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_6T2__" ${TEST_FOR_ARM_RESULTS} "armv6t2" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_6Z__" ${TEST_FOR_ARM_RESULTS} "armv6z" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_6ZK__" ${TEST_FOR_ARM_RESULTS} "armv6zk" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_6M__" ${TEST_FOR_ARM_RESULTS} "armv6-m" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_7__" ${TEST_FOR_ARM_RESULTS} "armv7" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_7A__" ${TEST_FOR_ARM_RESULTS} "armv7-a" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_7M__" ${TEST_FOR_ARM_RESULTS} "armv7-m" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_7R__" ${TEST_FOR_ARM_RESULTS} "armv7-r" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_7EM_" ${TEST_FOR_ARM_RESULTS} "armv7e-m" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_7VE__" ${TEST_FOR_ARM_RESULTS} "armv7ve" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_8A__" ${TEST_FOR_ARM_RESULTS} "armv8-a" ARM_VERSION) | ||||
|         check_arm_version("__ARM_ARCH_8A" ${TEST_FOR_ARM_RESULTS} "armv8-a" ARM_VERSION) | ||||
|  | ||||
|         # anything else just define as unknown | ||||
|         if(ARM_VERSION STREQUAL "") | ||||
|             message(STATUS "Couldn't detect ARM version.") | ||||
|             set(ARM_VERSION "unknown") | ||||
|         else() | ||||
|             message(STATUS "ARM version ${ARM_VERSION} detected.") | ||||
|         endif() | ||||
|     else() | ||||
|         message(STATUS "System is not ARM.") | ||||
|     endif() | ||||
| elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") | ||||
|     if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "arm") | ||||
|         set(IS_ARM TRUE) | ||||
|         set(ARM_VERSION ${CMAKE_HOST_SYSTEM_PROCESSOR}) | ||||
|         message(STATUS "ARM version ${ARM_VERSION} detected.") | ||||
|     endif() | ||||
| elseif(CMAKE_CXX_COMPILER_ID STREQUAL "ARMClang") | ||||
|     set(IS_ARM TRUE) | ||||
|     set(ARM_VERSION "arm") | ||||
|     if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "arm") | ||||
|         set(ARM_VERSION ${CMAKE_HOST_SYSTEM_PROCESSOR}) | ||||
|         message(STATUS "ARM version ${ARM_VERSION} detected.") | ||||
|     endif() | ||||
| else() | ||||
|     message(STATUS "Not detecting ARM on non-GNUCXX or non-Clang compiler. Defaulting to false.") | ||||
|     message(STATUS "If you are compiling for ARM, set -DIS_ARM=ON manually.") | ||||
| endif() | ||||
|  | ||||
| set(IS_ARM ${IS_ARM} CACHE BOOL "Compiling for ARM") | ||||
|   | ||||
							
								
								
									
										50
									
								
								cmake/Toolchains/aarch64-linux-gnu.cmake
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										50
									
								
								cmake/Toolchains/aarch64-linux-gnu.cmake
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,50 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| set(CMAKE_SYSTEM_NAME Linux) | ||||
| set(CMAKE_SYSTEM_PROCESSOR ARM) | ||||
|  | ||||
| if(MINGW OR CYGWIN OR WIN32) | ||||
|     set(UTIL_SEARCH_CMD where) | ||||
| elseif(UNIX OR APPLE) | ||||
|     set(UTIL_SEARCH_CMD which) | ||||
| endif() | ||||
|  | ||||
| set(TOOLCHAIN_PREFIX aarch64-linux-gnu-) | ||||
|  | ||||
| execute_process( | ||||
|     COMMAND ${UTIL_SEARCH_CMD} ${TOOLCHAIN_PREFIX}gcc | ||||
|     OUTPUT_VARIABLE BINUTILS_PATH | ||||
|     OUTPUT_STRIP_TRAILING_WHITESPACE | ||||
| ) | ||||
|  | ||||
| get_filename_component(ARM_TOOLCHAIN_DIR ${BINUTILS_PATH} DIRECTORY) | ||||
|  | ||||
| # The following is not needed on debian | ||||
| # Without that flag CMake is not able to pass test compilation check | ||||
| #set(CMAKE_EXE_LINKER_FLAGS_INIT "--specs=nosys.specs") | ||||
|  | ||||
| set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}gcc) | ||||
| set(CMAKE_ASM_COMPILER ${CMAKE_C_COMPILER}) | ||||
| set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}g++) | ||||
|  | ||||
| set(CMAKE_OBJCOPY ${ARM_TOOLCHAIN_DIR}/${TOOLCHAIN_PREFIX}objcopy CACHE INTERNAL "objcopy tool") | ||||
| set(CMAKE_SIZE_UTIL ${ARM_TOOLCHAIN_DIR}/${TOOLCHAIN_PREFIX}size CACHE INTERNAL "size tool") | ||||
|  | ||||
| set(CMAKE_FIND_ROOT_PATH ${BINUTILS_PATH}) | ||||
|  | ||||
| set(CMAKE_CROSSCOMPILING_EMULATOR "qemu-aarch64 -L /usr/aarch64-linux-gnu/") | ||||
							
								
								
									
										53
									
								
								cmake/Toolchains/arm-linux-gnueabihf.cmake
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										53
									
								
								cmake/Toolchains/arm-linux-gnueabihf.cmake
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,53 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| set(CMAKE_SYSTEM_NAME Linux) | ||||
| set(CMAKE_SYSTEM_PROCESSOR ARM) | ||||
|  | ||||
| if(MINGW OR CYGWIN OR WIN32) | ||||
|     set(UTIL_SEARCH_CMD where) | ||||
| elseif(UNIX OR APPLE) | ||||
|     set(UTIL_SEARCH_CMD which) | ||||
| endif() | ||||
|  | ||||
| set(TOOLCHAIN_PREFIX arm-linux-gnueabihf-) | ||||
|  | ||||
| execute_process( | ||||
|     COMMAND ${UTIL_SEARCH_CMD} ${TOOLCHAIN_PREFIX}gcc | ||||
|     OUTPUT_VARIABLE BINUTILS_PATH | ||||
|     OUTPUT_STRIP_TRAILING_WHITESPACE | ||||
| ) | ||||
|  | ||||
| get_filename_component(ARM_TOOLCHAIN_DIR ${BINUTILS_PATH} DIRECTORY) | ||||
|  | ||||
| # The following is not needed on debian | ||||
| # Without that flag CMake is not able to pass test compilation check | ||||
| #set(CMAKE_EXE_LINKER_FLAGS_INIT "--specs=nosys.specs") | ||||
|  | ||||
| set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}gcc) | ||||
| set(CMAKE_ASM_COMPILER ${CMAKE_C_COMPILER}) | ||||
| set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}g++) | ||||
| ## the following is needed for CheckCSourceCompiles used in lib/CMakeLists.txt | ||||
| set(CMAKE_C_FLAGS "-mfpu=neon" CACHE STRING "" FORCE) | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_C_FLAGS}" CACHE STRING "" FORCE) | ||||
|  | ||||
| set(CMAKE_OBJCOPY ${ARM_TOOLCHAIN_DIR}/${TOOLCHAIN_PREFIX}objcopy CACHE INTERNAL "objcopy tool") | ||||
| set(CMAKE_SIZE_UTIL ${ARM_TOOLCHAIN_DIR}/${TOOLCHAIN_PREFIX}size CACHE INTERNAL "size tool") | ||||
|  | ||||
| set(CMAKE_FIND_ROOT_PATH ${BINUTILS_PATH}) | ||||
|  | ||||
| set(CMAKE_CROSSCOMPILING_EMULATOR "qemu-arm -L /usr/arm-linux-gnueabihf/") | ||||
							
								
								
									
										26
									
								
								cmake/Toolchains/arm_cortex_a15_hardfp_native.cmake
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								cmake/Toolchains/arm_cortex_a15_hardfp_native.cmake
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,26 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| ######################################################################## | ||||
| # Toolchain file for building native on a ARM Cortex A8 w/ NEON | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| set(CMAKE_CXX_COMPILER g++) | ||||
| set(CMAKE_C_COMPILER gcc) | ||||
| set(CMAKE_CXX_FLAGS "-march=armv7-a -mtune=cortex-a15 -mfpu=neon -mfloat-abi=hard" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
							
								
								
									
										26
									
								
								cmake/Toolchains/arm_cortex_a53_hardfp_native.cmake
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								cmake/Toolchains/arm_cortex_a53_hardfp_native.cmake
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,26 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| ######################################################################## | ||||
| # Toolchain file for building native on a ARM Cortex A72 w/ NEON | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| set(CMAKE_CXX_COMPILER g++) | ||||
| set(CMAKE_C_COMPILER gcc) | ||||
| set(CMAKE_CXX_FLAGS "-march=armv8-a -mtune=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -mthumb -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
							
								
								
									
										26
									
								
								cmake/Toolchains/arm_cortex_a72_hardfp_native.cmake
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								cmake/Toolchains/arm_cortex_a72_hardfp_native.cmake
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,26 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| ######################################################################## | ||||
| # Toolchain file for building native on a ARM Cortex A72 w/ NEON | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| set(CMAKE_CXX_COMPILER g++) | ||||
| set(CMAKE_C_COMPILER gcc) | ||||
| set(CMAKE_CXX_FLAGS "-march=armv8-a -mtune=cortex-a72 -mfpu=neon-fp-armv8 -mfloat-abi=hard" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -mthumb -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
							
								
								
									
										26
									
								
								cmake/Toolchains/arm_cortex_a8_hardfp_native.cmake
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								cmake/Toolchains/arm_cortex_a8_hardfp_native.cmake
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,26 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| ######################################################################## | ||||
| # Toolchain file for building native on a ARM Cortex A8 w/ NEON | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| set(CMAKE_CXX_COMPILER g++) | ||||
| set(CMAKE_C_COMPILER gcc) | ||||
| set(CMAKE_CXX_FLAGS "-march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=hard" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
							
								
								
									
										26
									
								
								cmake/Toolchains/arm_cortex_a8_softfp_native.cmake
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								cmake/Toolchains/arm_cortex_a8_softfp_native.cmake
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,26 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| ######################################################################## | ||||
| # Toolchain file for building native on a ARM Cortex A8 w/ NEON | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| 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" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
							
								
								
									
										26
									
								
								cmake/Toolchains/arm_cortex_a9_hardfp_native.cmake
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								cmake/Toolchains/arm_cortex_a9_hardfp_native.cmake
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,26 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| ######################################################################## | ||||
| # Toolchain file for building native on a ARM Cortex A8 w/ NEON | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| set(CMAKE_CXX_COMPILER g++) | ||||
| set(CMAKE_C_COMPILER gcc) | ||||
| set(CMAKE_CXX_FLAGS "-march=armv7-a -mtune=cortex-a9 -mfpu=neon -mfloat-abi=hard" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
							
								
								
									
										26
									
								
								cmake/Toolchains/raspi3.cmake
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								cmake/Toolchains/raspi3.cmake
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,26 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| ######################################################################## | ||||
| # Toolchain file for building native on a ARM Cortex A72 w/ NEON | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| set(CMAKE_CXX_COMPILER g++) | ||||
| set(CMAKE_C_COMPILER gcc) | ||||
| set(CMAKE_CXX_FLAGS "-march=armv8-a -mtune=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -mthumb -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
							
								
								
									
										26
									
								
								cmake/Toolchains/raspi4.cmake
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								cmake/Toolchains/raspi4.cmake
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,26 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| ######################################################################## | ||||
| # Toolchain file for building native on a ARM Cortex A72 w/ NEON | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| set(CMAKE_CXX_COMPILER g++) | ||||
| set(CMAKE_C_COMPILER gcc) | ||||
| set(CMAKE_CXX_FLAGS "-march=armv8-a -mtune=cortex-a72 -mfpu=neon-fp-armv8 -mfloat-abi=hard" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -mthumb -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
| @@ -255,7 +255,6 @@ endif() | ||||
| if(${FILESYSTEM_FOUND}) | ||||
|     set(Boost_LIBRARIES "") | ||||
|     set(Boost_INCLUDE_DIRS "") | ||||
|     set(CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH}) | ||||
| else() | ||||
|     include(VolkBoost) | ||||
|     if(NOT Boost_FOUND) | ||||
|   | ||||
| @@ -0,0 +1,50 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| set(CMAKE_SYSTEM_NAME Linux) | ||||
| set(CMAKE_SYSTEM_PROCESSOR ARM) | ||||
|  | ||||
| if(MINGW OR CYGWIN OR WIN32) | ||||
|     set(UTIL_SEARCH_CMD where) | ||||
| elseif(UNIX OR APPLE) | ||||
|     set(UTIL_SEARCH_CMD which) | ||||
| endif() | ||||
|  | ||||
| set(TOOLCHAIN_PREFIX aarch64-linux-gnu-) | ||||
|  | ||||
| execute_process( | ||||
|     COMMAND ${UTIL_SEARCH_CMD} ${TOOLCHAIN_PREFIX}gcc | ||||
|     OUTPUT_VARIABLE BINUTILS_PATH | ||||
|     OUTPUT_STRIP_TRAILING_WHITESPACE | ||||
| ) | ||||
|  | ||||
| get_filename_component(ARM_TOOLCHAIN_DIR ${BINUTILS_PATH} DIRECTORY) | ||||
|  | ||||
| # The following is not needed on debian | ||||
| # Without that flag CMake is not able to pass test compilation check | ||||
| #set(CMAKE_EXE_LINKER_FLAGS_INIT "--specs=nosys.specs") | ||||
|  | ||||
| set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}gcc) | ||||
| set(CMAKE_ASM_COMPILER ${CMAKE_C_COMPILER}) | ||||
| set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}g++) | ||||
|  | ||||
| set(CMAKE_OBJCOPY ${ARM_TOOLCHAIN_DIR}/${TOOLCHAIN_PREFIX}objcopy CACHE INTERNAL "objcopy tool") | ||||
| set(CMAKE_SIZE_UTIL ${ARM_TOOLCHAIN_DIR}/${TOOLCHAIN_PREFIX}size CACHE INTERNAL "size tool") | ||||
|  | ||||
| set(CMAKE_FIND_ROOT_PATH ${BINUTILS_PATH}) | ||||
|  | ||||
| set(CMAKE_CROSSCOMPILING_EMULATOR "qemu-aarch64 -L /usr/aarch64-linux-gnu/") | ||||
| @@ -0,0 +1,53 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| set(CMAKE_SYSTEM_NAME Linux) | ||||
| set(CMAKE_SYSTEM_PROCESSOR ARM) | ||||
|  | ||||
| if(MINGW OR CYGWIN OR WIN32) | ||||
|     set(UTIL_SEARCH_CMD where) | ||||
| elseif(UNIX OR APPLE) | ||||
|     set(UTIL_SEARCH_CMD which) | ||||
| endif() | ||||
|  | ||||
| set(TOOLCHAIN_PREFIX arm-linux-gnueabihf-) | ||||
|  | ||||
| execute_process( | ||||
|     COMMAND ${UTIL_SEARCH_CMD} ${TOOLCHAIN_PREFIX}gcc | ||||
|     OUTPUT_VARIABLE BINUTILS_PATH | ||||
|     OUTPUT_STRIP_TRAILING_WHITESPACE | ||||
| ) | ||||
|  | ||||
| get_filename_component(ARM_TOOLCHAIN_DIR ${BINUTILS_PATH} DIRECTORY) | ||||
|  | ||||
| # The following is not needed on debian | ||||
| # Without that flag CMake is not able to pass test compilation check | ||||
| #set(CMAKE_EXE_LINKER_FLAGS_INIT "--specs=nosys.specs") | ||||
|  | ||||
| set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}gcc) | ||||
| set(CMAKE_ASM_COMPILER ${CMAKE_C_COMPILER}) | ||||
| set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}g++) | ||||
| ## the following is needed for CheckCSourceCompiles used in lib/CMakeLists.txt | ||||
| set(CMAKE_C_FLAGS "-mfpu=neon" CACHE STRING "" FORCE) | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_C_FLAGS}" CACHE STRING "" FORCE) | ||||
|  | ||||
| set(CMAKE_OBJCOPY ${ARM_TOOLCHAIN_DIR}/${TOOLCHAIN_PREFIX}objcopy CACHE INTERNAL "objcopy tool") | ||||
| set(CMAKE_SIZE_UTIL ${ARM_TOOLCHAIN_DIR}/${TOOLCHAIN_PREFIX}size CACHE INTERNAL "size tool") | ||||
|  | ||||
| set(CMAKE_FIND_ROOT_PATH ${BINUTILS_PATH}) | ||||
|  | ||||
| set(CMAKE_CROSSCOMPILING_EMULATOR "qemu-arm -L /usr/arm-linux-gnueabihf/") | ||||
| @@ -1,4 +1,4 @@ | ||||
| # Copyright (C) 2011-2018 (see AUTHORS file for a list of contributors) | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| @@ -20,6 +20,7 @@ | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| set(CMAKE_CXX_COMPILER g++) | ||||
| set(CMAKE_C_COMPILER  gcc) | ||||
| set(CMAKE_C_COMPILER gcc) | ||||
| set(CMAKE_CXX_FLAGS "-march=armv7-a -mtune=cortex-a15 -mfpu=neon -mfloat-abi=hard" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE) #same flags for C sources | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
|   | ||||
| @@ -0,0 +1,26 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| ######################################################################## | ||||
| # Toolchain file for building native on a ARM Cortex A72 w/ NEON | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| set(CMAKE_CXX_COMPILER g++) | ||||
| set(CMAKE_C_COMPILER gcc) | ||||
| set(CMAKE_CXX_FLAGS "-march=armv8-a -mtune=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -mthumb -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
| @@ -1,8 +1,26 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| ######################################################################## | ||||
| # Toolchain file for building native on a ARM Cortex A72 w/ NEON | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| set(CMAKE_CXX_COMPILER g++) | ||||
| set(CMAKE_C_COMPILER  gcc) | ||||
| set(CMAKE_C_COMPILER gcc) | ||||
| set(CMAKE_CXX_FLAGS "-march=armv8-a -mtune=cortex-a72 -mfpu=neon-fp-armv8 -mfloat-abi=hard" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE) #same flags for C sources | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -mthumb -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
|   | ||||
| @@ -0,0 +1,26 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| ######################################################################## | ||||
| # Toolchain file for building native on a ARM Cortex A8 w/ NEON | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| set(CMAKE_CXX_COMPILER g++) | ||||
| set(CMAKE_C_COMPILER gcc) | ||||
| set(CMAKE_CXX_FLAGS "-march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=hard" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
| @@ -0,0 +1,26 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| ######################################################################## | ||||
| # Toolchain file for building native on a ARM Cortex A8 w/ NEON | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| 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" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
| @@ -1,4 +1,4 @@ | ||||
| # Copyright (C) 2011-2018 (see AUTHORS file for a list of contributors) | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| @@ -20,6 +20,7 @@ | ||||
| # Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory> | ||||
| ######################################################################## | ||||
| set(CMAKE_CXX_COMPILER g++) | ||||
| set(CMAKE_C_COMPILER  gcc) | ||||
| set(CMAKE_C_COMPILER gcc) | ||||
| set(CMAKE_CXX_FLAGS "-march=armv7-a -mtune=cortex-a9 -mfpu=neon -mfloat-abi=hard" CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE) #same flags for C sources | ||||
| set(CMAKE_C_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_ASM_FLAGS "${CMAKE_CXX_FLAGS} -g" CACHE STRING "" FORCE)  # same flags for asm sources | ||||
|   | ||||
| @@ -0,0 +1,30 @@ | ||||
| # Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors) | ||||
| # | ||||
| # This file is part of GNSS-SDR. | ||||
| # | ||||
| # GNSS-SDR is free software: you can redistribute it and/or modify | ||||
| # it under the terms of the GNU General Public License as published by | ||||
| # the Free Software Foundation, either version 3 of the License, or | ||||
| # (at your option) any later version. | ||||
| # | ||||
| # GNSS-SDR is distributed in the hope that it will be useful, | ||||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| # GNU General Public License for more details. | ||||
| # | ||||
| # You should have received a copy of the GNU General Public License | ||||
| # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. | ||||
|  | ||||
| set(CMAKE_SYSTEM_NAME Linux) | ||||
| string(REGEX MATCH "sysroots/([a-zA-Z0-9]+)" CMAKE_SYSTEM_PROCESSOR $ENV{SDKTARGETSYSROOT}) | ||||
| string(REGEX REPLACE "sysroots/" "" CMAKE_SYSTEM_PROCESSOR ${CMAKE_SYSTEM_PROCESSOR}) | ||||
| set(CMAKE_CXX_FLAGS $ENV{CXXFLAGS}  CACHE STRING "" FORCE) | ||||
| set(CMAKE_C_FLAGS $ENV{CFLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_LDFLAGS_FLAGS ${CMAKE_CXX_FLAGS} CACHE STRING "" FORCE)  # same flags for C sources | ||||
| set(CMAKE_LIBRARY_PATH ${OECORE_TARGET_SYSROOT}/usr/lib) | ||||
| set(CMAKE_FIND_ROOT_PATH $ENV{OECORE_TARGET_SYSROOT} $ENV{OECORE_NATIVE_SYSROOT}) | ||||
| set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) | ||||
| set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) | ||||
| set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) | ||||
| set(ORC_INCLUDE_DIRS $ENV{OECORE_TARGET_SYSROOT}/usr/include/orc-0.4) | ||||
| set(ORC_LIBRARY_DIRS $ENV{OECORE_TARGET_SYSROOT}/usr/lib) | ||||
| @@ -470,8 +470,7 @@ if(${CMAKE_VERSION} VERSION_GREATER "2.8.9") | ||||
|     if(ASM_ARCH STREQUAL "neonv7") | ||||
|       message(STATUS "---- Adding ASM files") # we always use ATT syntax | ||||
|       message(STATUS "-- Detected neon architecture; enabling ASM") | ||||
|       # setup architecture specific assembler flags | ||||
|       set(ARCH_ASM_FLAGS "-mfpu=neon -g") | ||||
|       # architecture specific assembler flags are now set in the cmake toolchain file | ||||
|       # then add the files | ||||
|       include_directories(${PROJECT_SOURCE_DIR}/kernels/volk_gnsssdr/asm/neon) | ||||
|       file(GLOB asm_files ${PROJECT_SOURCE_DIR}/kernels/volk_gnsssdr/asm/neon/*.s) | ||||
| @@ -482,7 +481,6 @@ if(${CMAKE_VERSION} VERSION_GREATER "2.8.9") | ||||
|       endforeach() | ||||
|     endif() | ||||
|     enable_language(ASM) | ||||
|     set(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} ${ARCH_ASM_FLAGS}") | ||||
|     message(STATUS "c flags: ${FULL_C_FLAGS}") | ||||
|     message(STATUS "asm flags: ${CMAKE_ASM_FLAGS}") | ||||
|   endforeach() | ||||
|   | ||||
| @@ -29,6 +29,9 @@ if(DEFINED ENV{OECORE_TARGET_SYSROOT}) | ||||
|     set(GTEST_COMPILER "") | ||||
|     set(TOOLCHAIN_ARG "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_CURRENT_SOURCE_DIR}/../../cmake/Toolchains/oe-sdk_cross.cmake") | ||||
| else() | ||||
|     if(CMAKE_TOOLCHAIN_FILE) | ||||
|         set(TOOLCHAIN_ARG "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}") | ||||
|     endif() | ||||
|     if(ENABLE_PACKAGING) | ||||
|         set(TOOLCHAIN_ARG "-DCMAKE_VERBOSE_MAKEFILE=ON") | ||||
|     endif() | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Carles Fernandez
					Carles Fernandez