> I'd assume it would be possible. However you'd have to create
> a Win32 hosted gcc (stock or mingw) crosscompiler for Mac OS.
In theory, it's perfectly possible. In practice, it's difficult to set up
a cross-compiler that targets darwin systems (read: a compiler that runs
on a given computer, with Windows in your case, and creates executables
for MacOS X).
I have been trying myself for some time to create a cross-compiler
targetting darwin (with host=linux in my case), and the conclusions I
drew are the following:
1. you can have a darwin targeted assembler, by downloading Apple
binutils and cctools, hacking them until they compile. It does require a
faire amount of tweaking, but the produced binaries work fine.
2. i didn't manage to have a darwin-targeted linker: using the same
approach as 1. never succeeded, never succeeded to produce binaries.
3. the compiler part, however, should not be difficult once 2. is
resolved.
Good luck!
FX
|