目前,我正在修改Raspberry Pi的C應用程序。 我建立應用程序使用此命令: make
現在我想用libconfig庫。 我有這樣的問題,下面 [email protected] ~/yyyyy $ make
make --no-print-directory all-am
CC tools/xxxxx.o
CCLD tools/xxxxx
tools/xxx
我想在C++中使用libconfig運行我的第一個基本程序。我編了g++ testing.cpp -o testing。 #include <iostream>
#include <cstdlib>
#include <libconfig.h++>
using namespace std;
using namespace libconfig;
int main(){
Co