cURL Windows 构建配置的说明

Explanation of the cURL Windows build configurations

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
  • 开头的LIB表示构建静态库,DLL表示制作DLL
  • Debug/Release 是为了做什么样的构建
  • LIB/DLL OpenSSL 用于使用 OpenSSL 作为库或 DLL
  • 构建具有 TLS 支持(用于 HTTPS 等)的 libcurl
  • LIB/DLL LibSSH2 用于使用 libssh2 作为库或 DLL 构建支持 SSH 的 libcurl
  • Windows SSPI 在构建中启用 SSPI,这是 windows 特定的身份验证魔法
  • DLL wolfSSL 用于使用 wolfSSL(而不是 OpenSSL)构建具有 TLS 支持(用于 HTTPS 等)的 libcurl
  • DLL WinIDN 用于构建带有本机 windows IDN 支持的 libcurl