2

我有一个可以在我的系统上编译和运行的项目,但是当我尝试在服务器上运行它时,它会给出编译时错误。这是我用来在我的系统上编译它的 Makefile 的一部分:

CC =  gcc
CFLAGS = -g -Wall
COMPLILEFLAGS = `mysql_config --include`
LINKERINFO = `mysql_config --cflags --libs`

exec: main.o
    $(CC) $(CFLAGS) -o exec main.o $(LINKERINFO)

main.o: main.c
    $(CC) $(CFLAGS) $(COMPLILEFLAGS) -c main.c

当我在服务器上运行相同的文件时,出现以下错误:

gcc -g -Wall -I/usr/include/mysql -c main.c
In file included from main.c:13:
/usr/include/mysql/my_global.h:688: error: redefinition of typedef ‘my_bool’
/usr/include/mysql/mysql.h:55: note: previous declaration of ‘my_bool’ was here
In file included from main.c:13:
/usr/include/mysql/my_global.h:699: error: redefinition of typedef ‘my_socket’
/usr/include/mysql/mysql.h:69: note: previous declaration of ‘my_socket’ was here
In file included from main.c:13:
/usr/include/mysql/my_global.h:1102: error: redefinition of typedef ‘my_ulonglong’
/usr/include/mysql/mysql.h:132: note: previous declaration of ‘my_ulonglong’ was here
In file included from main.c:14:
/usr/include/mysql/my_getopt.h:64: warning: ‘enum loglevel’ declared inside parameter list

main.c 文件是:

#include <stdio.h>
#include <mysql.h>
#include <my_global.h>

int main (void)
{
    return 0;
}

任何人都可以建议解决此问题的可能方法。我想要的只是增加这段代码的可移植性。我能想到的一种选择是制作文件compilerlinker在我的源代码中使用并将它们用于编译和链接。

顺便说一句,我使用的是 mysql-server 5.5 版,服务器有 mysql-server 5.3 版

4

1 回答 1

1

查看 MySQL 的文档,我发现旧版本包含一个警告,指出在 Windows 上编译my_global.h之前应该包含该警告。mysql.h

尝试颠倒包含的顺序,看看是否能解决问题。如果是这样,将紧急向 MySQL 提交一个错误。

于 2012-06-28T01:31:19.533 回答