我在我的C ++项目中使用第三方静态库,它依赖于libssl版本0.9.7a。由于各种原因,我的项目使用的libssl版本是0.9.8e。
一切正常,直到第三方最近更改了他们的静态库。当它包含这个新版本的静态库时,我无法成功编译我的应用程序。旧版本编译得很好。
我不熟悉这些库依赖项及其向后兼容性。我们被告知必须使用第三方建议的版本。我只是想知道这是不是真的。 IMO,我想它应该向后兼容,不应该吗?
非常感谢任何解决此问题的方向。
以下是我收到的编译错误:
cc1plus: note: obsolete option -I- used, please use -iquote instead
In file included from /usr/include/openssl/e_os2.h:56,
from /usr/include/openssl/ssl.h:173,
from MyClass.cpp:28:
/usr/include/openssl/opensslconf.h:13:30: error: opensslconf-i386.h: No such file or directory
/usr/include/openssl/bn.h:288: error: expected ';' before '*' token
/usr/include/openssl/bn.h:304: error: 'BN_ULONG' does not name a type
/usr/include/openssl/bn.h:407: error: 'BN_ULONG' was not declared in this scope
/usr/include/openssl/bn.h:450: error: 'BN_ULONG' does not name a type
/usr/include/openssl/bn.h:451: error: 'BN_ULONG' does not name a type
/usr/include/openssl/bn.h:452: error: 'BN_ULONG' has not been declared
/usr/include/openssl/bn.h:453: error: 'BN_ULONG' has not been declared
/usr/include/openssl/bn.h:454: error: 'BN_ULONG' has not been declared
/usr/include/openssl/bn.h:455: error: 'BN_ULONG' has not been declared
/usr/include/openssl/bn.h:456: error: 'BN_ULONG' does not name a type
/usr/include/openssl/bn.h:471: error: 'BN_ULONG' has not been declared
/usr/include/openssl/bn.h:764: error: 'BN_ULONG' does not name a type
/usr/include/openssl/bn.h:765: error: 'BN_ULONG' does not name a type
/usr/include/openssl/bn.h:766: error: variable or field 'bn_sqr_words' declared void
/usr/include/openssl/bn.h:766: error: 'BN_ULONG' was not declared in this scope
/usr/include/openssl/bn.h:766: error: 'rp' was not declared in this scope
/usr/include/openssl/bn.h:766: error: expected primary-expression before 'const'
/usr/include/openssl/bn.h:766: error: expected primary-expression before 'int'
/usr/include/openssl/bn.h:767: error: 'BN_ULONG' does not name a type
/usr/include/openssl/bn.h:768: error: 'BN_ULONG' does not name a type
/usr/include/openssl/bn.h:769: error: 'BN_ULONG' does not name a type
/usr/include/openssl/ssl3.h:303: error: 'PQ_64BIT' does not name a type
/usr/include/openssl/pqueue.h:73: error: 'PQ_64BIT' does not name a type
/usr/include/openssl/pqueue.h:80: error: 'PQ_64BIT' was not declared in this scope
/usr/include/openssl/pqueue.h:80: error: expected primary-expression before 'void'
/usr/include/openssl/pqueue.h:89: error: 'PQ_64BIT' has not been declared
/usr/include/openssl/dtls1.h:92: error: 'PQ_64BIT' does not name a type
/usr/include/openssl/dtls1.h:94: error: 'PQ_64BIT' does not name a type
错误消息显示没有opensslconf-i386.h这样的文件,但它确实存在。
知道出了什么问题吗?
谢谢你的时间!
答案 0 :(得分:3)
C预处理器未找到opensslconf-i386.h文件 - 因此您需要找出失败的原因。您已收到编译器关于使用过时选项的警告(并建议修复) - 执行此操作。
好的 - 你说文件存在:它在哪里,它的权限是什么?它是如何被opensslconf.h包含的?该行与包含的任何其他OpenSSL头不同。除了弃用的'-I - '之外,您使用的'-I'选项是什么?
在这个阶段,我会说你的安装有错误或者是一个奇怪的命令行。
问题标题......与问题正文无明显关系。