我有一个由其他人编写的 C 库,我希望从我的 C++ 程序中调用它。C 标头的结构如下:
#ifndef INC_MOVE_CLIENT_H
#define INC_MOVE_CLIENT_H
#ifdef __cplusplus
extern "C" {
#endif
...
int serverConnect(const char *, const char *, MoveStateDeferred *);
...
#ifdef __cplusplus
}
#endif
#endif // ... INC_MOVE_CLIENT_H
我在我的 C++ 程序中调用 serverConnect,如下所示:
#include "helloworld.h"
#include "moveclient.h"
int main(int argc, const char* argv[]) {
const char* ip = "192.168.1.2";
const char* port = "7899";
MoveStateDeferred* m;
serverConnect(ip, port, m);
}
根据这些说明,这对我来说似乎是正确的,但是当我尝试编译时,我得到:
$ gcc helloworld.cpp -o helloworld.out
/tmp/ccuS93Yu.o: In function `main':
helloworld.cpp:(.text+0x3c): undefined reference to `serverConnect'
collect2: ld returned 1 exit status
moveclient.c 具有 serverConnect 的实现,并且与其他文件位于同一目录中。我是否使用了不正确的命令进行编译?我需要做些什么来编译 moveclient.c 吗?还是与编译命令无关的其他东西?