openssl 编译异常报以下错误
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
这是由于Perl package导致,修改Configure文件
use if $^O ne "VMS", 'File::Glob' => qw/glob/;
修改为
use if $^O ne "VMS", 'File::Glob' => qw/:glob/;
标签:Configure,交叉,18,glob,编译,OPENSSL1.1,File,line,Glob From: https://www.cnblogs.com/cqwo/p/17994953