2
0

openwrt-toolchain-ath79.cmake 699 B

1234567891011121314151617181920
  1. SET(CMAKE_SYSTEM_NAME Linux)
  2. SET(OWRT_STAGING_DIR /opt/devel/openwrt/openwrt.git/staging_dir)
  3. SET(OWRT_TARGET target-mips_24kc_musl)
  4. SET(OWRT_TOOLCHAIN toolchain-mips_24kc_gcc-7.4.0_musl)
  5. SET(OWRT_CROSS ${OWRT_STAGING_DIR}/${OWRT_TOOLCHAIN}/bin/mips-openwrt-linux-)
  6. SET(CMAKE_C_COMPILER ${OWRT_CROSS}gcc)
  7. SET(CMAKE_CXX_COMPILER ${OWRT_CROSS}g++)
  8. SET(CMAKE_FIND_ROOT_PATH ${OWRT_STAGING_DIR}/${OWRT_TARGET})
  9. SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
  10. SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
  11. SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
  12. ADD_DEFINITIONS(
  13. -Os -pipe -mno-branch-likely -mips32r2 -mtune=24kc -fno-caller-saves -fno-plt
  14. -fhonour-copts -msoft-float -mips16 -minterlink-mips16
  15. )