blob: 12cf3e98da0d8be722c5d0ff56981ebcee191974 [file] [log] [blame]
Andy Green5b479ac2013-03-30 10:30:03 +08001#
2# CMake Toolchain file for crosscompiling on ARM.
3#
4# This can be used when running cmake in the following way:
5# cd build/
6# cmake .. -DCMAKE_TOOLCHAIN_FILE=../cross-arm-linux-gnueabihf.cmake
7#
8
9set(CROSS_PATH /opt/gcc-linaro-arm-linux-gnueabihf-4.7-2013.02-01-20130221_linux)
10
11# Target operating system name.
12set(CMAKE_SYSTEM_NAME Linux)
13
14# Name of C compiler.
15set(CMAKE_C_COMPILER "${CROSS_PATH}/bin/arm-linux-gnueabihf-gcc")
16set(CMAKE_CXX_COMPILER "${CROSS_PATH}/bin/arm-linux-gnueabihf-g++")
17
18# Where to look for the target environment. (More paths can be added here)
19set(CMAKE_FIND_ROOT_PATH "${CROSS_PATH}")
20
21# Adjust the default behavior of the FIND_XXX() commands:
22# search programs in the host environment only.
23set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
24
25# Search headers and libraries in the target environment only.
26set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
27set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
28