博客专栏

EEPW首页 > 博客 > gmssl编译安装出错解决

gmssl编译安装出错解决

发布人:电子禅石 时间:2020-12-22 来源:工程师 发布文章
错误1

Operating system: x86_64-whatever-linux2 “glob” is not exported by the File::Glob module Can’t continue after import errors at ./Configure line 18. BEGIN failed–compilation aborted at ./Configure line 18. “glob” is not exported by the File::Glob module Can’t continue after import errors at ./Configure line 18. BEGIN failed–compilation aborted at ./Configure line 18. This system (linux-x86_64) is not supported. See file INSTALL for details

glob相关问题

This issue is due to the Perl package File::Glob, 一些简单的修改就能修复这个. 在 Configure文件和 test/build.info这个文件,

use if $^O ne "VMS", 'File::Glob' => qw/glob/;1

改成

use if $^O ne "VMS", 'File::Glob' => qw/:glob/;1

就解决了

错误2

gmssl: symbol lookup error: gmssl: undefined symbol: BIO_debug_callback, version OPENSSL_1_1_0d

安装好后运行gmssl会出错

运行命令

ldconfig1

解决 但是运行openssl也会默认进入gmssl 暂时无解


*博客内容为网友个人发布,仅代表博主个人观点,如有侵权请联系工作人员删除。



关键词:

相关推荐

技术专区

关闭