toolchain.linux-arm11.cmake 253 B

12345678910
  1. # path to compiler and utilities
  2. # specify the cross compiler
  3. SET(CMAKE_C_COMPILER arm-linux-gnueabihf-gcc)
  4. # Name of the target platform
  5. SET(CMAKE_SYSTEM_NAME Linux)
  6. SET(CMAKE_SYSTEM_PROCESSOR arm)
  7. # Version of the system
  8. SET(CMAKE_SYSTEM_VERSION 1)