RFR: 8268915: WebKit build fails with Xcode 12.5

John Neffenger jgneff at openjdk.java.net
Wed Jun 23 06:19:26 UTC 2021


On Thu, 17 Jun 2021 14:52:53 GMT, Kevin Rushforth <kcr at openjdk.org> wrote:

> The JavaFX WebKit build fails with Xcode 12.5 + MacOS 11.3 SDK. This is related to the added C++20 support where some of the system include files now do `#include <version>`. Because the macOS file system is case insensitive, it matches a file named `VERSION` in the sqlite source directory. That file is just a plain text file (not used by our build at all) so the fix is to rename it to `VERSION.txt`. I've done a CI build on all three platforms. @jgneff has verified that renaming this file fixes the build for XCode 12.5.

I just tested this pull request on macOS using the Command Line Tools for Xcode 12.5.1 update released on June 20, 2021:


$ pkgutil --pkg-info=com.apple.pkg.CLTools_Executables
package-id: com.apple.pkg.CLTools_Executables
version: 12.5.1.0.1.1623191612
volume: /
location: /
install-time: 1624422801
groups: com.apple.FindSystemFiles.pkg-group 


The build and unit tests were successful:


BUILD SUCCESSFUL in 1h 5m 9s
214 actionable tasks: 214 executed

-------------

PR: https://git.openjdk.java.net/jfx/pull/535


More information about the openjfx-dev mailing list