这对我来说非常令人费解,因为代码在 Debian 5 系统上编译时没有错误,但在 FreeBSD 7 上,例如在第 98 行出现语法错误。
int ipmi_fru_get_board_info_mfg_time(ipmi_fru_t *fru, time_t *time);
最初在 *fru 和 time_t 之间有一个换行符。不确定是什么导致了这些编译器错误,但提到换行符感觉很重要。
或者第 298 行中的这个完全没有改变它的格式。
int ipmi_fru_get(ipmi_fru_t *fru,
int index,
char **name,
int *num,
enum ipmi_fru_data_type_e *dtype,
int *intval,
time_t *time,
char **data,
unsigned int *data_len);
这些是输出到终端的未更改错误。
In file included from out_fru.c:37:
../include/OpenIPMI/ipmi_fru.h:98: error: expected declaration specifiers or '...' before 'time_t'
../include/OpenIPMI/ipmi_fru.h:298: error: expected declaration specifiers or '...' before 'time_t'
../include/OpenIPMI/ipmi_fru.h:474: error: expected declaration specifiers or '...' before 'time_t'
../include/OpenIPMI/ipmi_fru.h:559: error: expected declaration specifiers or '...' before 'time_t'
../include/OpenIPMI/ipmi_fru.h:627: error: expected declaration specifiers or '...' before 'time_t'
随后的错误似乎是相关的,因为它们影响在 ipmi_fru.h 头文件的上述行中声明的函数。
out_fru.c: In function 'ipmi_cmdlang_dump_fru_info':
out_fru.c:87: warning: passing argument 7 of 'ipmi_fru_get' from incompatible pointer type
out_fru.c:87: warning: passing argument 8 of 'ipmi_fru_get' from incompatible pointer type
out_fru.c:87: error: too many arguments to function 'ipmi_fru_get'
什么可能导致这些奇怪的平台特定语法错误?我的第一个想法是一些不可打印的字符,但我尝试过检查 cat -e include/OpenIPMI/ipmi_fru.h | 少,我看到的只是空格和换行符。