OPENSSL1.1交叉编译编译异常处理
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/;