conan: 解决MinGW编译Openssl的编译错误:crypto/dso/dso_win32.c
今天在用conan使用MinGW编译openssl/1.1.k
,执行如下命令:
$ conan install openssl/1.1.1k@ -s compiler=gcc -s compiler.version=5.2 --build missing
在编译到crypto/dso/dso_win32.c
时报了一大堆错误,大概是这些:
crypto/dso/dso_win32.c: In function 'win32_load':
crypto/dso/dso_win32.c:98:5: error: unknown type name 'HINSTANCE'
98 | HINSTANCE h = NULL, *p = NULL;
| ^~~~~~~~~
crypto/dso/dso_win32.c:98:19: warning: initialization of 'int' from 'void *' makes integer from pointer without a cast [-Wint-conversion]
98 | HINSTANCE h = NULL, *p = NULL;
| ^~~~
crypto/dso/dso_win32.c:106:9: warning: implicit declaration of function 'LoadLibraryA' [-Wimplicit-function-declaration]
106 | h = LoadLibraryA(filename);
| ^~~~~~~~~~~~
crypto/dso/dso_win32.c:107:11: warning: comparison between pointer and integer
107 | if (h == NULL) {
| ^~
crypto/dso/dso_win32.c:129:11: warning: comparison between pointer and integer
129 | if (h != NULL)
| ^~
crypto/dso/dso_win32.c:130:9: warning: implicit declaration of function 'FreeLibrary' [-Wimplicit-function-declaration]
130 | FreeLibrary(h);
| ^~~~~~~~~~~
crypto/dso/dso_win32.c: In function 'win32_unload':
crypto/dso/dso_win32.c:136:5: error: unknown type name 'HINSTANCE'
136 | HINSTANCE *p;
| ^~~~~~~~~
crypto/dso/dso_win32.c: In function 'win32_bind_func':
crypto/dso/dso_win32.c:163:5: error: unknown type name 'HINSTANCE'
163 | HINSTANCE *ptr;
| ^~~~~~~~~
crypto/dso/dso_win32.c:166:9: error: unknown type name 'FARPROC'
166 | FARPROC f;
| ^~~~~~~
crypto/dso/dso_win32.c:182:13: warning: implicit declaration of function 'GetProcAddress' [-Wimplicit-function-declaration]
182 | sym.f = GetProcAddress(*ptr, symname);
| ^~~~~~~~~~~~~~
通过Google搜索找到下面这个ISSUE: 《dso_win32.c error #2979》,搞明白了原因
确实,在Windows下conan编译openssl的时候,是需要msys2的,见下图
也就是说msys2
自带的gcc
会导致上面的编译错误,但Windows下编译openssl又确实需要在msys2提供的bash环境下执行bash编译脚本
所以需要通过环境变量CC,CXX
指定使用的MinGW-w64编译器
方案一
直接在上面的conan install
命令基础上通过-e
来定义环境变量CC
指定自己Windows系统下安装的MinGW C编译器
$ conan install openssl/1.1.1k@ -s compiler=gcc -s compiler.version=5.2 --build missing -e CC=P:MinGWmingw64bingcc.exe
方案二
方案一虽然简单,但是如果每次用MinGW编译都要敲这么长一串命令也是挺麻烦的,上面的这些参数都可以通过配置文件(profile)定义。比如我的Windows平台默认安装的编译器是Microsoft Visual Studio 2015
,所以我的默认profile为
default
代码语言:javascript复制[settings]
os=Windows
os_build=Windows
arch=x86_64
arch_build=x86_64
compiler=Visual Studio
compiler.version=14
build_type=Release
[options]
[build_requires]
[env]
那么,我们可以在default的基础上新增一个名为mingw
的配置文件如下
mingw
代码语言:javascript复制# 从默认配置文件(default)继承默认设置
include(default)
[settings]
# 修改编译器类型
compiler=gcc
# 根据自己系统上安装的MinGW版本,定义编译器版本号
# 通过gcc -dumpversion 获取MinGW版本号
compiler.version=5.2
compiler.libcxx=libstdc 11
build_type=Release
[options]
[build_requires]
[env]
# 定义环境变量强制指定C编译器
CC=P:MinGWmingw64bingcc.exe
# 定义环境变量强制指定C 编译器
# openssl 为纯C项目,不需要C 编译器
#CXX=P:MinGWmingw64bing .exe
因为mingw 配置文件中定义了所有必须的参数,所以命令行执行时就相对简单了:
代码语言:javascript复制$ conan install openssl/1.1.1k@ -pr mingw --build openssl
参考资料
[question] Compiling OpenSSL with MinGW on Windows
《dso_win32.c error #2979》