Re: Can I compile for Linux from a Windows platform?

2013-10-16 Thread Jerome BENOIT
If you want to play within a Linux environment on Windows, you can try CygWIN: http://www.cygwin.com/ On 17/10/13 04:24, Adam D. Ruppe wrote: > On Thursday, 17 October 2013 at 01:18:42 UTC, Jonathan M Davis wrote: >> In general, you can't cross-compile across operating systems. > > Linux to Wind

Re: Can I compile for Linux from a Windows platform?

2013-10-16 Thread H. S. Teoh
On Thu, Oct 17, 2013 at 04:24:07AM +0200, Adam D. Ruppe wrote: > On Thursday, 17 October 2013 at 01:18:42 UTC, Jonathan M Davis > wrote: > >In general, you can't cross-compile across operating systems. > > Linux to Windows is pretty easy. You can just run the Windows > version of dmd under wine on

Re: Can I compile for Linux from a Windows platform?

2013-10-16 Thread Adam D. Ruppe
On Thursday, 17 October 2013 at 01:18:42 UTC, Jonathan M Davis wrote: In general, you can't cross-compile across operating systems. Linux to Windows is pretty easy. You can just run the Windows version of dmd under wine on linux to make exes, or you can compile gcc (and presumably gdc, though

Re: Can I compile for Linux from a Windows platform?

2013-10-16 Thread Jonathan M Davis
On Thursday, October 17, 2013 02:58:50 Stephen Jones wrote: > Basically I want to develop a program on Windows and send the exe > to someone to use on a Linux platform. Is this possible? AFAIK, it's not possible. It _might_ be possible to do with mingw and gdc or ldc (I don't know if they use min

Can I compile for Linux from a Windows platform?

2013-10-16 Thread Stephen Jones
Basically I want to develop a program on Windows and send the exe to someone to use on a Linux platform. Is this possible?