CMake交叉编译

Posted 蜕变之旅

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CMake交叉编译相关的知识,希望对你有一定的参考价值。

在所有CMakelist.txt的最顶部加入如下语句(子目录中也需要加):

# 指定交叉编译的目标系统,此处为arm-linux-gnueabihf,依情形设置
SET(CMAKE_SYSTEM_NAME arm-linux-gnueabihf) 

set(triple arm-linux-gnueabihf)

# 指定C编译器
set(CMAKE_C_COMPILER "/usr/bin/arm-linux-gnueabihf-gcc")
set(CMAKE_C_COMPILER_TARGET ${triple})

# 指定C++编译器
set(CMAKE_CXX_COMPILER "/usr/bin/arm-linux-gnueabihf-g++")
set(CMAKE_CXX_COMPILER_TARGET ${triple})

以上是关于CMake交叉编译的主要内容,如果未能解决你的问题,请参考以下文章

使用 cmake 进行交叉编译

CMake交叉编译目标rpath

Cmake交叉编译标志

cmake指定交叉编译

CMake交叉编译

make/cmake:海思himix200交叉编译zlib