What argument do I need to use to export an executable file that will run on Mac from my Windows machine?

gcc *.c -o Program.? -?

*? = what goes here?

link|improve this question

51% accept rate
Define: "run on Mac from my Windows machine" Are you trying to cross-compile? – Mysticial Dec 23 '11 at 18:07
1  
1  
You cannot do that directly, you need a cross-compiler setup. And it is far from being obvious to set up :/ – fge Dec 23 '11 at 18:08
The Apple gcc (or clang/llvm) will not produce any Windows executables at all, if you want to do that. As written my Mystical, you need a cross-compiler or compile the project on Windows/Linux/whatever. – onitake Dec 23 '11 at 18:09
What I mean is how can I compile a Apple/Linux executable from the GCC compiler installed on my Windows machine? – ghostsoldier23 Dec 23 '11 at 20:06
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.