<div dir="ltr">Hi Phil,<div><br></div><div>Thanks for your reply. I agree that the webkit build should be very doable, as it is in fact simply invoking make to an external project.</div><div>I am slightly more worried about the generation of the shader code, and the use of antlr for this. I'd like to use the gensrc phase of the jdk for this, but I'm a bit stuck on using that with external dependencies.</div><div><br></div><div>My main work over the past weeks has been in finding a "balanced" approach for maintaining the OpenJFX code and the build instructions. </div><div>I wrote a second post about this, with a proposal: <a href="https://johanvos.wordpress.com/2025/03/27/building-a-jdk-including-openjfx-part-2/">https://johanvos.wordpress.com/2025/03/27/building-a-jdk-including-openjfx-part-2/</a></div><div><br></div><div>My first efforts were to check if it would be feasible to build OpenJFX with the OpenJDK build system, and my focus then shifted to how maintainable it can be.</div><div>For very good reasons, the impact of whatever we do/require in OpenJFX on the JDK build team/infrastructure should be very minimal. I explored a number of options, and my current suggested approach is to (for now) keep the OpenJFX sources in the openjdk/jfx repository, and having the build/make logic in a skara-synced fork of openjdk/jdk. I added a `--with-openjfx-modules` option to configure for this.</div><div><br></div><div>The TLDR of this is: the OpenJFX code stays in the openjfx repo, and the configure/make logic goes into an auto-synced jdk-fork.</div><div><br></div><div>While this second step has nothing to do with the code, and even the building itself, I believe it is really important to get it right. Being able to distribute different versions of JavaFX for different platforms, making them work with well-defined versions of the JDK is key to the success and adoption of JavaFX, and it has a considerable influence on the cost of maintaining (and distributing) JavaFX. </div><div><br></div><div>That is why my suggested approach separates the (semantic/repository) location of code and build logic. It is not enough to use the existing OpenJDK build logic (including toolchain with matching compiler/lib versions); we also need to be able to auto-update to changes in this build logic, versions, compilers, libraries...</div><div><br></div><div>I am very much looking forward to opinions about this.</div><div><br></div><div>- Johan</div><div><br></div></div><br><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">On Tue, Mar 11, 2025 at 9:01 PM Philip Race <<a href="mailto:philip.race@oracle.com">philip.race@oracle.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">I see no one has responded. That isn't because of a lack of interest .. <br>
we just haven't had time to discuss it.<br>
<br>
Undoubtedly a lot of details to figure out but my take is this is worth <br>
pursuing.<br>
<br>
For webkit, I'd like to think it is *possible* to build it using the JDK <br>
build system, at least<br>
used as a bootstrap for the cmake webkit build, and at the end to <br>
collect the artifacts.<br>
<br>
A "clean up compiler warnings" effort would be valuable on its own.<br>
Until we actually transitioned the build, we'd probably have to add to <br>
the gradle system<br>
a way to disable specific warnings, like the JDK does, because it isn't <br>
practical to eliminate all warnings,<br>
since they some times come from a 3rd party library.<br>
<br>
-phil.<br>
<br>
<br>
On 2/27/25 7:15 AM, Johan Vos wrote:<br>
> Hi,<br>
><br>
> I introduced this topic during the OpenJDK Committers' workshop in <br>
> Brussels, on Feb 3, 2025.<br>
> For a long time, I was thinking about building OpenJFX using the JDK <br>
> buildsystem, and I just blogged about a very basic and limited POC for <br>
> doing so on Linux: <br>
> <a href="https://johanvos.wordpress.com/2025/02/27/building-openjfx-using-jdk/" rel="noreferrer" target="_blank">https://johanvos.wordpress.com/2025/02/27/building-openjfx-using-jdk/</a> <br>
> . The POC I have for this (linux-only at the moment) is at <br>
> <a href="https://github.com/johanvos/jdk/tree/jfxpoc-blog" rel="noreferrer" target="_blank">https://github.com/johanvos/jdk/tree/jfxpoc-blog</a><br>
> This is just a personal idea and effort, but I would be more than <br>
> happy to discuss how we as the OpenJFX developers might benefit from this.<br>
><br>
> One of the main reasons for doing this (I list a number of reasons in <br>
> my blog post), is the cross-compilation capability. It is also very <br>
> convenient that the result of the build is now a full JDK image, <br>
> including the JavaFX modules. I am aware that some companies <br>
> distribute JavaFX modules with their JDK distribution, and this might <br>
> help a better alignment.<br>
><br>
> Since I am also the OpenJDK/Mobile project lead, I have to work with <br>
> the JDK build system anyhow. To me personally, it saves a major amount <br>
> of time if I only have to use 1 build system (configure/make) instead <br>
> of 2 build systems. This is no criticism at all to Gradle, but I lack <br>
> the expertise (and time to learn) needed to work efficiently with it. <br>
> With all the projects I do, I try to be as efficient as possible with <br>
> my time, and streamlining build systems helps.<br>
> The JDK build system is really excellent, and since it is used by so <br>
> many OpenJDK developers, it feels very familiar. The delta that is <br>
> needed to have it working and support for JavaFX is very small.<br>
><br>
> The POC I did is far from complete. There are a number of issues that <br>
> need to be tackled, e.g.:<br>
> * what about webkit?<br>
> * we have a code-generator for shaders, that is using a very old <br>
> external dependency. While the JDK build system has great support to <br>
> generate code, I'm not sure this is the ideal approach<br>
> * warnings, warnings and warnings.<br>
><br>
> The last item is something that I believe should be tacklked in any <br>
> case. I had to disable the warnings-as-errors, and I had to add a fair <br>
> amount of exceptions to javac warnings. This might be a good time to <br>
> look into this as well.<br>
><br>
> Again, I want to stress that this is just an experiment I did because <br>
> it would save me lots of time, and make it much easier for me to <br>
> understand what is going on in builds. I absolutely do not want to <br>
> imply that this is much better than what we currently have. But maybe <br>
> others are interested as well, and in that case we can discuss this.<br>
><br>
> - Johan<br>
<br>
</blockquote></div>