I've been struggling for a while with an error in Qt:
mainwindow.obj:-1: error: LNK2019: unresolved external symbol _git_repository_open referenced in function "public: __thiscall MainWindow::MainWindow(class QWidget *)" (??0MainWindow@@QAE@PAVQWidget@@@Z)
This is obviously a linking error, but I haven't been able to figure out what is causing this. This is all being compiled on Windows, and the library that I'm targeting is libgit2.
I compiled libgit2 using MVSC2010 (which I'm also using for my Qt builds), and then added the external library to my Qt project. The includes are being acknowledged without issue, but the library isn't being linked properly. Since libgit2 is a C library, I've tried included the library in an extern block (and also without the exern block) to no avail:
extern "C" {
#include <git2.h>
}
Also, the function is in the lib file:
dumpbin /EXPORTS git2.lib
...
_git_repository_open@8
...
The relevant lines which are throwing an error (the first one works if on its own, since it is defined in the git header, but the second line fails upon linking):
git_repository *repo;
git_repository_open(&repo, "/opt/libgit2-test/.git");
The relevant qt.pro file lines:
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/libgit2/lib/ -lgit2
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/libgit2/lib/ -lgit2d
else:unix: LIBS += -L$$PWD/libgit2/lib/ -lgit2
INCLUDEPATH += $$PWD/libgit2/include
DEPENDPATH += $$PWD/libgit2/include

#includeincludes headers, it does not link to libraries. Did you set up your project to actually link against the library? Also, it's unlikely that you need anextern "C"block. Headers these days are aware of C++ and you shouldn't try to do this manually. In the libgit2 headers, if you examine them, you will see#ifdef __cplusplusguards. So you should remove theextern "C"block from your code. – Nikos C. Feb 13 at 19:08extern "C"block? You shouldn't use one for libgit2. – Nikos C. Feb 13 at 19:12