5

I'm a Windows developer so I'm new to the Linux environment. I was wondering if anyone had any advice or general articles that could help me build a project on Linux and compile it into a library or DLL for use in a Windows environment.

Any help is greatly appreciated.

Seb
  • 3,374
  • 9
  • 70
  • 106
  • 2
    Seb - what's the reason for compiling in Linux and running in Windows - can't you just compile it in Windows? – Praveen Sripati Sep 19 '11 at 14:32
  • Rob - The language is C++. Praveen - The reason is that I am trying to port an Open Source project into a DLL for use in windows – Seb Sep 19 '11 at 16:33

1 Answers1

5

You could use a cross-compiler, or simply install Windows and the necessary build tools inside a virtual machine (e.g. using VirtualBox).

NPE
  • 464,258
  • 100
  • 912
  • 987