在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
前言 在linux系统运行程序,小鹅知道的有3种编译方式,一种是直接命令行编译,一种是使用Cmake,一种是使用脚本文件(*.sh)。本文介绍的是使用命令行编译。 使用过程 注意不同系统的编译器版本可能有所不同,gcc是C语言的编译器,g++是c++的编译器。 1. 使用Jsoncpp开源库 g++ test.cpp -o test -ljsoncpp
2. 使用opencv开源库 g++ test.cpp -o test `pkg-config --cflags --libs opencv` 注意,标点符号是反单引号(TAB键上方最左边的按键)而不是单引号。 3.使用c++新特性 g++ test.cpp -o test -std=c++11 或者 g++ test.cpp -o test -ljsoncpp `pkg-config -std=gnu++11 4. 使用多个库 g++ test.cpp -o test -ljsoncpp `pkg-config --cflags --libs opencv` -std=c++11 运行程序 ./test 参考 完 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论