mips64r6el-gnu.toolchain.cmake 954 B

1234567891011121314
  1. # ----------------------------------------------------------------------------------------------
  2. # MIPS ToolChanin can be downloaded from https://www.mips.com/develop/tools/codescape-mips-sdk/ .
  3. # Toolchains with 'mti' in the name (and install directory) are for MIPS R2-R5 instruction sets.
  4. # Toolchains with 'img' in the name are for MIPS R6 instruction sets.
  5. # It is recommended to use cmake-gui for build scripts configuration and generation:
  6. # 1. Run cmake-gui
  7. # 2. Specify toolchain file mips64r6el-gnu.toolchain.cmake for cross-compiling.
  8. # 3. Configure and Generate makefiles.
  9. # 4. make -j4 & make install
  10. # ----------------------------------------------------------------------------------------------
  11. set(CMAKE_SYSTEM_PROCESSOR mips64r6el)
  12. set(GCC_COMPILER_VERSION "" CACHE STRING "GCC Compiler version")
  13. set(GNU_MACHINE "mips-img-linux-gnu" CACHE STRING "GNU compiler triple")
  14. include("${CMAKE_CURRENT_LIST_DIR}/mips.toolchain.cmake")