简体   繁体   English

为arm交叉编译opencv:C++:错误:无法识别的命令行选项'-mthumb'; 你的意思是“-mtbm”?

[英]cross-compile opencv for arm : c++: error: unrecognized command line option ‘-mthumb’; did you mean ‘-mtbm’?

I am trying to cross-compile opencv 4.0/3.4 for a Tinker Board - ARM-based processor — the Rockchip RK3288我正在尝试为 Tinker Board - 基于 ARM 的处理器 - Rockchip RK3288 交叉编译 opencv 4.0/3.4

I am using Ubuntu 18.04 as host machine.我使用 Ubuntu 18.04 作为主机。

I pretty much followed everything mentioned here .我几乎遵循了这里提到的所有内容。

But when I try the cmake using below:但是当我尝试使用下面的 cmake 时:

mike@mike-laptop:~/opencv-3.4.5/build$ cmake -DCMAKE_TOOLCHAIN_FILE=../platforms/linux/arm-gnueabi.toolchain.cmake ../ I am getting the below error:

Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. Compiler: /usr/bin/c++ Build flags: -mthumb;;-fdata-sections;-Wa,--noexecstack;-fsigned-char;-Wno-psabi Id flags:

The output was: 1 c++: error: unrecognized command line option ‘-mthumb’; did you mean ‘-mtbm’?

Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. Compiler: /usr/bin/c++ Build flags: -mthumb;;-fdata-sections;-Wa,--noexecstack;-fsigned-char;-Wno-psabi Id flags: -c

The output was: 1 c++: error: unrecognized command line option ‘-mthumb’; did you mean ‘-mtbm’?

and tons of more messages以及更多的消息

I had met the same problem.我遇到了同样的问题。 I try我试试

sudo apt-get install g++-arm-linux-gnueabi
sudo apt-get install g++-arm-linux-gnueabihf

and I solve it.我解决了它。

I hope it will help you!我希望它会帮助你!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM