首页 > 解决方案 > cURL Windows 构建配置的说明

问题描述

cURL 项目包含大量 Windows 上的构建配置可供选择,但我找不到关于每个配置用途的良好概述描述。

cURL 构建配置的不同部分的目的是什么?

从 cURL 7.63.0 的 VC15 解决方案文件中提取的构建配置列表:

DLL Debug - DLL OpenSSL - DLL LibSSH2
DLL Debug - DLL OpenSSL - DLL LibSSH2
DLL Debug - DLL OpenSSL
DLL Debug - DLL OpenSSL
DLL Debug - DLL Windows SSPI - DLL WinIDN
DLL Debug - DLL Windows SSPI - DLL WinIDN
DLL Debug - DLL Windows SSPI
DLL Debug - DLL Windows SSPI
DLL Debug - DLL wolfSSL
DLL Debug - DLL wolfSSL
DLL Debug
DLL Debug
DLL Release - DLL OpenSSL - DLL LibSSH2
DLL Release - DLL OpenSSL - DLL LibSSH2
DLL Release - DLL OpenSSL
DLL Release - DLL OpenSSL
DLL Release - DLL Windows SSPI - DLL WinIDN
DLL Release - DLL Windows SSPI - DLL WinIDN
DLL Release - DLL Windows SSPI
DLL Release - DLL Windows SSPI
DLL Release - DLL wolfSSL
DLL Release - DLL wolfSSL
DLL Release
DLL Release
LIB Debug - DLL OpenSSL - DLL LibSSH2
LIB Debug - DLL OpenSSL - DLL LibSSH2
LIB Debug - DLL OpenSSL
LIB Debug - DLL OpenSSL
LIB Debug - DLL Windows SSPI - DLL WinIDN
LIB Debug - DLL Windows SSPI - DLL WinIDN
LIB Debug - DLL Windows SSPI
LIB Debug - DLL Windows SSPI
LIB Debug - LIB OpenSSL - LIB LibSSH2
LIB Debug - LIB OpenSSL - LIB LibSSH2
LIB Debug - LIB OpenSSL
LIB Debug - LIB OpenSSL
LIB Debug - LIB wolfSSL
LIB Debug - LIB wolfSSL
LIB Debug
LIB Debug
LIB Release - DLL OpenSSL - DLL LibSSH2
LIB Release - DLL OpenSSL - DLL LibSSH2
LIB Release - DLL OpenSSL
LIB Release - DLL OpenSSL
LIB Release - DLL Windows SSPI - DLL WinIDN
LIB Release - DLL Windows SSPI - DLL WinIDN
LIB Release - DLL Windows SSPI
LIB Release - DLL Windows SSPI
LIB Release - LIB OpenSSL - LIB LibSSH2
LIB Release - LIB OpenSSL - LIB LibSSH2
LIB Release - LIB OpenSSL
LIB Release - LIB OpenSSL
LIB Release - LIB wolfSSL
LIB Release - LIB wolfSSL
LIB Release
LIB Release

标签: c++windowscurllibcurl

解决方案


  • 领先的LIB意思是建立一个静态库,DLL意思是制作一个DLL
  • Debug/Release 用于构建什么样的构建
  • LIB/DLL OpenSSL 用于使用 OpenSSL 作为 lib 或 DLL 构建具有 TLS 支持(用于 HTTPS 等)的 libcurl
  • LIB/DLL LibSSH2 用于使用 libssh2 作为 lib 或 DLL 构建具有 SSH 支持的 libcurl
  • Windows SSPI在构建中启用 SSPI,这是特定于 Windows 的身份验证魔法
  • DLL wolfSSL 用于使用 wolfSSL(而不是 OpenSSL)构建具有 TLS 支持(用于 HTTPS 等)的 libcurl
  • DLL WinIDN 用于在启用本机 Windows IDN 支持的情况下构建 libcurl

推荐阅读