在openssl中新增了几个对外的API,make时,提示如下错误(或者新增的接口没有编译到libssl.so或libcrypt.so):does not have a number assigned
Warning: *** does not have a number assigned
Warning: *** does not have a number assigned
Warning: *** does not have a number assigned
Warning: *** does not have a number assigned
解决办法:
(1)利用config脚本,产生一个Makefile
#./config
(2)执行下面的命令,自动把新增的接口更新到util/libssl.num和util/libcrypto.num
#make update
文章讲述了在OpenSSL中遇到对外API编译错误,提示接口没有被分配编号,提供了使用config脚本生成Makefile并执行makeupdate命令来更新util/libssl.num和util/libcrypto.num的解决方案。
1027

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



