新闻  |   论坛  |   博客  |   在线研讨会
gmssl编译安装出错解决
电子禅石 | 2020-12-22 09:13:17    阅读:3219   发布文章

错误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 暂时无解


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

参与讨论
登录后参与讨论
属于自己的技术积累分享,成为嵌入式系统研发高手。
推荐文章
最近访客