client: protect against possible NULL deref path
[platform/upstream/libwebsockets.git] / cross-arm-linux-gnueabihf.cmake
1 #
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
9 set(CROSS_PATH /opt/gcc-linaro-arm-linux-gnueabihf-4.7-2013.02-01-20130221_linux)
10
11 # Target operating system name.
12 set(CMAKE_SYSTEM_NAME Linux)
13
14 # Name of C compiler.
15 set(CMAKE_C_COMPILER "${CROSS_PATH}/bin/arm-linux-gnueabihf-gcc")
16 set(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)
19 set(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.
23 set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
24
25 # Search headers and libraries in the target environment only.
26 set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
27 set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
28