我正在尝试针对Mips处理器交叉编译Azure IoT SDKC。使用较旧版本的CMake(2.8.12.2)交叉编译同一SDK的较旧版本是否可以正常工作,因此我怀疑它本身就是代码。我猜这是Mips GCC编译器。
错误消息:
CMake Error at /usr/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake:52 (message):
The C compiler
"/usr/local/mipsisa32r2el/r23/bin/mipsisa32r2el-axis-linux-gnu-gcc"
is not able to compile a simple test program.
It fails with the following output:
Change Dir: /home/axis/azure-iot-sdk-c/cmake/iotsdk_linux/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_2cc84/fast"
/usr/bin/make -f CMakeFiles/cmTC_2cc84.dir/build.make CMakeFiles/cmTC_2cc84.dir/build
make[1]: Entering directory '/home/axis/azure-iot-sdk-c/cmake/iotsdk_linux/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2cc84.dir/testCCompiler.c.o
/usr/local/mipsisa32r2el/r23/bin/mipsisa32r2el-axis-linux-gnu-gcc --sysroot=/usr/local/mipsisa32r2el/r23 -o CMakeFiles/cmTC_2cc84.dir/testCCompiler.c.o -c /home/axis/azure-iot-sdk-c/cmake/iotsdk_linux/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_2cc84
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2cc84.dir/link.txt --verbose=1
/usr/local/mipsisa32r2el/r23/bin/mipsisa32r2el-axis-linux-gnu-gcc --sysroot=/usr/local/mipsisa32r2el/r23 -rdynamic CMakeFiles/cmTC_2cc84.dir/testCCompiler.c.o -o cmTC_2cc84
/usr/local/mipsisa32r2el/r23/lib/gcc/mipsisa32r2el-axis-linux-gnu/4.7.2/../../../../mipsisa32r2el-axis-linux-gnu/bin/ld: this linker was not configured to use sysroots
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_2cc84.dir/build.make:97: recipe for target 'cmTC_2cc84' failed
make[1]: *** [cmTC_2cc84] Error 1
make[1]: Leaving directory '/home/axis/azure-iot-sdk-c/cmake/iotsdk_linux/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_2cc84/fast' failed
make: *** [cmTC_2cc84/fast] Error 2
不幸的是,我被Mips GCC编译器所困扰。有没有办法禁用此测试程序检查?
解决方案是将这些添加到工具链文件中:
SET (CMAKE_C_COMPILER_WORKS 1)
SET (CMAKE_CXX_COMPILER_WORKS 1)
答案 0 :(得分:7)
cmake
尝试使用“标准”(按照cmake认为是标准的)编译器选项来编译可执行文件,并尝试运行该可执行文件,以查看编译器是否正常工作。可执行文件很简单,通常像int main(int argc) { return argc - 1; }
。
交叉编译时不能这样做。因为通常您不能链接适当的标准C库,所以您没有printf
或_start
或_exit
或类似的东西,将参数传递给main
是实现定义的,或者您需要一个链接描述文件,或者您不能在主机上运行交叉编译的源代码,等等...简单:您通常不能在主机上运行交叉编译的可执行文件,并且在大多数情况下,即使编译起来也很难
常见的解决方案是在project()
之前设置:
set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY")
因此,cmake将根据here尝试编译静态库而不是可执行文件。这样可以避免运行链接程序,并且可以进行交叉编译。
您可以设置CMAKE_C_COMPILER_WORKS
,它会省略每个here的支票,但是我认为CMAKE_TRY_COMPILE_TARGET_TYPE
是更合适的解决方案。
答案 1 :(得分:0)
如果使用 CMake GUI,您可以添加一个名为的布尔条目
CMAKE_CXX_COMPILER_FORCED
然后将其设置为 True。
这将跳过此构建的检查过程。
答案 2 :(得分:-1)
重新安装cmake可以解决相同的问题