1

I am using Visual C++ Express Edition. And I have the following queries in it..

1) Can I distribute the executable that I got from VC++ express edition for commercial purpose? 2) How to get a common executable for 32 bit and 64 bit architecture using Visual C++ express edition?

And my another doubt is.. Using "Mingw" how to generate a common executable for 32 bit and 64 bit architecture.

thanks.

4

1 回答 1

4
  1. 是的,使用 Visual Studio Express Edition 构建的应用程序没有许可限制。

  2. 只需构建一个 32 位可执行文件。它将在 64 位 Windows 上正常工作,因为它将在 WOW64 子系统下运行。这同样适用于其他 Windows C++ 编译器,例如 MinGW。

    如果您真的想编译一个单独的 64 位应用程序,您将需要下载并安装最新版本的 Windows SDK。它包括 64 位工具,包括 64 位编译器。这些工具不包含在 Visual C++ Express 中。

于 2012-05-03T07:05:24.650 回答