Ramazan Cinardere
Ramazan Cinardere

Reputation: 133

JavaFX: Build <32.bit>.exe file

I'm developing a JavaFX-Application which should be able to run on 32bit and 64bit machines.

My developing environment:
- Windows7 (64bit)
- Luna(4.4)
- JDK 1.8.0_65

For building my project I'm using (ant) build.xml. How can I accomplish, building from a 64bit machine a 32bit .exe file???

Upvotes: 2

Views: 961

Answers (1)

Kyle Luke
Kyle Luke

Reputation: 348

Java bytecode (and source code) is platform independent, assuming you use platform independent libraries. 32 vs. 64 bit shouldn't matter.

Here is the link

just use 32 bit(86x) java se version and you will not face any compatibility problems. By the way ant is very old school. I recommend use Maven or Gradle. Good luck

Upvotes: 0

Related Questions