Home >Backend Development >C++ >How Can I Build 64-bit Applications Using Visual C 2010 Express?

How Can I Build 64-bit Applications Using Visual C 2010 Express?

Barbara Streisand
Barbara StreisandOriginal
2024-11-30 01:29:11776browse

How Can I Build 64-bit Applications Using Visual C   2010 Express?

Building 64-bit Applications with Visual C 2010 Express

Visual C 2010 Express is a convenient development environment, but it lacks the ability to compile 64-bit applications. However, by utilizing other tools, you can extend its functionality and target 64-bit architectures.

Step-by-Step Guide

  1. Install Windows Software Development Kit (SDK) v7.1:

    • The SDK includes a 64-bit compiler, which is not found in Visual C 2010 Express:
      https://msdn.microsoft.com/en-us/windowsserver/bb980924.aspx
  2. Configure Project Properties:

    • Open your project's Properties and select "All Configurations" for "Configuration."
    • Choose "x64" for "Platform" from the "Configuration Manager."
    • Set "Active solution platform" to "x64."
  3. Change Toolset:

    • In Project Properties under "Configuration Properties,"
    • Alter "Platform Toolset" from "v100" to "Windows7.1SDK."

By following these steps, you can prepare your Visual C 2010 Express project to compile 64-bit applications. For additional insights, refer to the Microsoft reference:
https://msdn.microsoft.com/en-us/library/9yb4317s.aspx

The above is the detailed content of How Can I Build 64-bit Applications Using Visual C 2010 Express?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn