2015-05-09 13:48:53 +02:00
|
|
|
set(CMAKE_SYSTEM_NAME Linux)
|
|
|
|
set(CMAKE_SYSTEM_VERSION 1)
|
2016-04-15 09:40:58 +02:00
|
|
|
set(CMAKE_SYSTEM_PROCESSOR arm)
|
2015-05-09 13:48:53 +02:00
|
|
|
|
|
|
|
set(cross_triple "arm-linux-gnueabihf")
|
|
|
|
|
2018-05-25 18:34:20 +02:00
|
|
|
set(CMAKE_C_COMPILER $ENV{CC})
|
|
|
|
set(CMAKE_CXX_COMPILER $ENV{CXX})
|
|
|
|
set(CMAKE_Fortran_COMPILER $ENV{FC})
|
2015-05-09 13:48:53 +02:00
|
|
|
|
2016-04-15 09:40:58 +02:00
|
|
|
# Discard path returned by pkg-config and associated with HINTS in module
|
|
|
|
# like FindOpenSSL.
|
|
|
|
set(CMAKE_IGNORE_PATH /usr/lib/x86_64-linux-gnu/ /usr/lib/x86_64-linux-gnu/lib/)
|
2015-05-09 13:57:41 +02:00
|
|
|
|
|
|
|
set(CMAKE_CROSSCOMPILING_EMULATOR /usr/bin/qemu-arm)
|