我正在尝试编译我的课程,我得到以下结果。
g++ test.cpp -lconfig++ -stdlib=libstdc++
Undefined symbols for architecture x86_64:
"CommandParser::parseCommand(std::string)", referenced from:
_main in test-8f6e3f.o
"CommandParser::CommandParser()", referenced from:
_main in test-8f6e3f.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
这是我正在尝试编译的类:
#include "commandparser.h"
using namespace libconfig;
CommandParser::CommandParser(string configFile){
this->configFile = configFile;
}
CommandParser::CommandParser(){
this->configFile = CONFIG_FILE_NAME;
}
string CommandParser::parseCommand(string cmd){
Config cfg;
try{
cfg.readFile(this->configFile.c_str());
}
catch (const FileIOException &fi){
cerr << "I/O error while reading file." << std::endl;
exit(1);
}
catch (const ParseException &pe){
cerr << "Parse error at " << pe.getFile() << ":" << pe.getLine()
<< " - " << pe.getError() << endl;
exit(1);
}
try{
string path = cfg.lookup(cmd);
cout << "The path to the script is: " << path << endl;
return path;
}
catch(const SettingNotFoundException &e){
cerr << "No command with the name '"<<cmd<<"'"<<endl;
exit(1);
}
}
如何修复此问题并获取编译代码? 我正在运行Mac OSX 10.9。
答案 0 :(得分:3)
我只是在这里猜测,并且猜测你所显示的代码不是test.cpp
文件的一部分,而是在一个单独的文件中。这意味着你的构建命令
$ g++ test.cpp -lconfig++ -stdlib=libstdc++
只会构建test.cpp
。它不会自动将其他源文件添加到编译过程中。
您必须使用所有相关的源文件显式构建,例如
$ g++ test.cpp commandparser.cpp -lconfig++ -stdlib=libstdc++