- 论坛徽章:
- 0
|
程序如下:- #include <errno.h>
- #include <coptypes.h>
- #include <coperr.h>
- #include <dbcarea.h>
- #include <parcel.h>
- int main()
- {
- return 0;
- }
复制代码 机器:Linux localhost.localdomain 2.6.18-194.el5xen #1 SMP Tue Mar 16 22:01:26 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux
编译一直报下面错误:
[aig5@localhost test]$ g++ -c Main.cpp
/usr/include/coptypes.h:200: 错误:相互冲突的声明 ‘typedef struct err_code error_t’
/usr/include/errno.h:69: 错误:‘error_t’ 早先被声明为 ‘typedef int error_t’
尝试:
1)我也查了coptypes.h第200行,确实也定义了一个error_t
#ifndef NO_CLIV2_ERROR_T /* DR96357 */
/* DR55267: type changed to UInt32 */
typedef struct err_code
{
UInt32 e_class;
UInt32 e_reason;
UInt32 e_syst;
} error_t, *errpt_t;
#endif
2)编译选项改成下面这样子,也报错。
[aig5@localhost test]$ g++ -c -DNO_CLIV2_ERROR_T Main.cpp
/usr/include/dbcarea.h:1093: 错误:‘errpt_t’ 未声明
3)如果把Main.cpp改成Main.c又能编译通过(gcc -c Main.c)
4)如果把程序Main.cpp放到32位机子上,也能编译通过。
有谁也碰到,我这种情况吗,谢谢啊。
|
|