Reputation: 133
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
Reputation: 348
Java bytecode (and source code) is platform independent, assuming you use platform independent libraries. 32 vs. 64 bit shouldn't matter.
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