0

我已经成功编译了我的拼写检查程序和 libspellcheck 库。现在我的问题是允许其他开发人员使用我的 libspellcheck。我创建了一个简单的测试程序:

#include <spellcheck.h>
#include <iostream>

using namespace std;

int main(void)
{

    bool spell_result = check_spelling("english.dict", "abed");

    if(spell_result == true)
    {
        cout << "your dictionary / libspellcheck works!" << endl;
    }
    else
    {
        cout << "problem with your dictionary / libspellcheck" << endl;
    }

    return 0;
}

如果一切正常,程序将输出:

你的字典 / libspellcheck 有效

但是,这个程序甚至不会编译。我用了:

g++ -lspellcheck -o 测试 test.cpp

它没有用。我相信这是头文件的问题,因为编译器给了我这个:

test.cpp: In function ‘int main()’:
test.cpp:9:59: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
test.cpp:9:59: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
/tmp/ccIz3ivT.o: In function `main':
test.cpp:(.text+0x19): undefined reference to `check_spelling(char*, char*)'
collect2: ld returned 1 exit status

唯一的问题是,spellcheck.h 位于 /usr/include 中,我认为它应该在其中。我的问题是,我该如何解决这个错误,是我的头文件有问题还是我的 libspellcheck 有问题。如果您需要查看其他代码,我很乐意提供,因为拼写检查和 libspellcheck 是在 GPL 下获得许可的。

4

1 回答 1

2

假设您check_spelling在标题中的声明是正确的,试试这个:

g++ -o test test.cpp -lspellcheck

-l应该对象之后,具体取决于命令行中的库)。从头文件开始,确实找到并使用了它否则您会从编译器而不是链接器收到错误。

于 2013-01-21T17:24:02.983 回答