-
SUSE Linux Enterprise Server 12 SP2 (x86_64) – kernal 4.4.21-69-default
编译步骤:

make 报错
gcc -g -O2 -D_REENTRANT -Wall -D_POSIX_PTHREAD_SEMANTICS -c -o daemon_inetd.o daemon_inetd.c
In file included from unpipc.h:7:0,
from daemon_inetd.c:1:
../config.h:56:17: error: duplicate ‘unsigned’
#define uint8_t unsigned char /* <sys/types.h> */
^
../config.h:56:26: error: two or more data types in declaration specifiers
#define uint8_t unsigned char /* <sys/types.h> */
^
../config.h:57:18: error: duplicate ‘unsigned’
#define uint16_t unsigned short /* <sys/types.h> */
^
../config.h:57:27: error: duplicate ‘short’
#define uint16_t unsigned short /* <sys/types.h> */
^
../config.h:58:18: error: duplicate ‘unsigned’
#define uint32_t unsigned int /* <sys/types.h> */
^
../config.h:58:27: error: two or more data types in declaration specifiers
#define uint32_t unsigned int /* <sys/types.h> */
解决方法:
打开unpipc.h , 注释掉 line 56 57 58.
在SUSE Linux Enterprise Server 12 SP2上,使用gcc进行编译时遇到重复类型定义错误。错误出现在config.h文件中,涉及uint8_t, uint16_t, uint32_t等类型。解决方法为在unpipc.h中注释掉重复的类型定义。


被折叠的 条评论
为什么被折叠?



