我从链接器错误中遇到了很多麻烦。这是我最近的一次。
Undefined symbols for architecture x86_64:
"XMLObject::~XMLObject()", referenced from:
Hash::addFile(char*, XMLObject) in hash.o
std::__1::__split_buffer<XMLObject, std::__1::allocator<XMLObject>&>::~__split_buffer() in hash.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我在添加哈希表(.h和.cpp)时得到它。我真的不知道是什么原因导致这个错误。
void Hash::addObj(char* id, XMLObject num)
{
int index = hash(id);
if(hashTable[index]->identifier == "empty") // checks empty bucket
{
hashTable[index]->identifier = id;
hashTable[index]->files.push_back(num);
}
else // checks list
{
bool check = false; // true if id word was found
item* ptr = hashTable[index];
while(ptr != nullptr)
{
if(ptr->identifier == id)
{
ptr->files.push_back(num);
check = true;
break;
}
ptr = ptr->next;
}
if(!check)
{
item* n = new item;
n->identifier = id;
n->files.push_back(num);
n->next = nullptr;
ptr = n;
}
}
}
答案 0 :(得分:2)
看起来您已添加到项目hash.h
和hash.cpp
,但该模块取决于另一个模块,可能是xmlobject.h
和xmlobject.cpp
。
解决方案:也将这些其他文件添加到项目中。