我已经使用 Windows 的官方 MySQL 安装程序安装了 MySQL C 连接器,但是在与 GCC 链接后,它仍然会引发未定义的引用错误。
我尝试重新安装和安装不同的版本(即所有 6.0 到 6.1.1 )。我尝试将所有 '\' 更改为 '/',我尝试给出一个错误的名称,然后继续向我抛出一个 'lib not found' 错误,所以我确定我给出了正确的路径。
GCC 命令:
gcc mysql_test.c -Wall -o "project_path\target\debug\mysql_test.exe" -I"C:\Program Files\MySQL\MySQL Connector C 6.1\include" -L"C:\Program Files\MySQL\MySQL Connector C 6.1\lib" -lmysql
抛出
d:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\UserPC\AppData\Local\Temp\cc479zw2.o:main.c:(.text+0x23): undefined reference to `mysql_init@4'
d:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\UserPC\AppData\Local\Temp\cc479zw2.o:main.c:(.text+0x44): undefined reference to `mysql_options@12'
d:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\UserPC\AppData\Local\Temp\cc479zw2.o:main.c:(.text+0x8d): undefined reference to `mysql_real_connect@32'
d:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\UserPC\AppData\Local\Temp\cc479zw2.o:main.c:(.text+0xa2): undefined reference to `mysql_error@4'
collect2.exe: error: ld returned 1 exit status
make: *** [Makefile:12: all] Error 1
我被引导相信是链接错误。
这是我直接从文档中复制的代码:
#include <stdio.h>
#include <mysql.h>
int main() {
MYSQL db;
mysql_init(&db);
mysql_options(&db,MYSQL_READ_DEFAULT_GROUP,"prj_name");
if (!mysql_real_connect(&db,"i","correctly","set","these",0,NULL,0)) {
fprintf(stderr, "Failed to connect to database: Error: %s\n", mysql_error(&db));
}
return 0;
}
我只使用(学习)C 一个月左右,这是我第一次需要在库中链接。
(预期的结果是没有抛出错误并且编译成功。)
如何解决这些链接错误?