Discussion:
Building a 32-bit JavaFX lib
Nikola Z.
2018-11-20 10:30:26 UTC
Permalink
I have a project using java 11, since JavaFX no longer officially supports 32-bit variant, is there any possible way for me to build such myself?
Johan Vos
2018-11-20 10:43:04 UTC
Permalink
We have an internal build for JavaFX 11 on win32 as there were some
customers asking for it. It seems demand for this is bigger than I
expected, so it might make sense we add win32 to the supported list.
There is not much different in building win32 builds, you have to specify
IS_64 is false though.

- Johan
Post by Nikola Z.
I have a project using java 11, since JavaFX no longer officially supports
32-bit variant, is there any possible way for me to build such myself?
Kevin Rushforth
2018-11-20 13:55:45 UTC
Permalink
You will need a 32-bit JDK in order to do this, which is also not
supported. The FX build will detect a 32-bit JDK and build 32-bit native
libs.

-- Kevin
Post by Nikola Z.
I have a project using java 11, since JavaFX no longer officially supports 32-bit variant, is there any possible way for me to build such myself?
Loading...