vote up 3 vote down star
2

What compiler (I'm using gcj 4.x) options should I use to generate an "exe" file for my java application to run in windows?

flag

3 Answers

vote up 5 vote down check

To compile the Java program MyJavaProg.java, type:

gcj -c -g -O MyJavaProg.java

To link it, use the command:

gcj --main=MyJavaProg -o MyJavaProg MyJavaProg.o

and then linking to create an executable mycxxprog.exe

g++ -o mycxxprog.exe mycxxprog.o
link|flag
vote up 0 vote down

So here it is for one class file this is good example, but if try to make my project how to follow the things to make my java project as the exe, I can create archive for all my classes(jar format) even though i am getting into multiple jar files

link|flag
vote up 0 vote down

Here is an in length discussion about the topic. It includes discussion about different compilers and IDEs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.