我使用 Microsoft Visual C++ Build Tools 2015在Windows 容器中构建 C++ 代码
msbuild /p:Configuration=Debug
基本上cl.exe
使用/MDd
选项运行并产生无法使用的可执行文件 - 见下文。
/p:Configuration=Release
使用/MD
并制作完美的可执行文件。
示例代码hello-world.cxx
:
#include <iostream>
int main()
{
std::cout << "Hello World!";
}
编译/MDd
:
> cl.exe /EHsc /MDd hello-world.cxx
Microsoft (R) C/C++ Optimizing Compiler Version 19.00.24210 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
hello-world.cxx
Microsoft (R) Incremental Linker Version 14.00.24210.0
Copyright (C) Microsoft Corporation. All rights reserved.
/out:hello-world.exe
hello-world.obj
> echo %ERRORLEVEL%
0
> hello-world.exe
...nothing is printed here...
> echo %ERRORLEVEL%
-1073741515
编译/MD
:
> cl.exe /EHsc /MD hello-world.cxx
...
> hello-world.exe
Hello World!
> echo %ERRORLEVEL%
0
这是我的 Dockerfile 的相关部分:
FROM microsoft/windowsservercore
...
# Install chocolatey ...
...
# Install Visual C++ Build Tools, as per: https://chocolatey.org/packages/vcbuildtools
RUN choco install -y vcbuildtools -ia "/InstallSelectableItems VisualCppBuildTools_ATLMFC_SDK"
# Add msbuild to PATH
RUN setx /M PATH "%PATH%;C:\Program Files (x86)\MSBuild\14.0\bin"
# Test msbuild can be accessed without path
RUN msbuild -version
如您所见,我通过 choco 包安装了 Visual C++ Build Tools 2015。
我已阅读文档:https ://docs.microsoft.com/en-us/cpp/build/reference/md-mt-ld-use-run-time-library
所以/MDd
定义 _DEBUG
并MSVCRTD.lib
放入 .obj 文件中,而不是 MSVCRT.lib
在我的笔记本电脑上,我安装了完整的 Visual Studio,并且构建良好。
我比较MSVCRTD.lib
了我C:\Program Files (x86)\Microsoft Visual Studio 14.0
在两个系统下安装的文件是相同的。
使困惑...