1

I want to compile a C++ DLL in 64 bin using Visual Studio 2010 Express. I know how to use the configuration manager in C#. Just select x64 as target platform and compile. But in C++, there is only "Win32" available as target.

How can I compile a x64 bit DLL?

bytecode77
  • 14,163
  • 30
  • 110
  • 141

1 Answers1

4

Visual C++ Express does not include 64-bit tools by default. You can install Windows Software Development Kit (SDK) to get them.

For details, see: http://msdn.microsoft.com/en-us/library/9yb4317s(v=vs.100).aspx

Igor ostrovsky
  • 7,282
  • 2
  • 29
  • 28