Florian Enner
Florian Enner
I'll chime in here as well. I've tried this optimization a few times, but for my use cases the extra branching always ended up costing more than I got from...
@lessthanoptimal I think the largest CSC I used to benchmark in the polynomial spline trajectory project was 9k squared with 15k entries (1k segments), but I assume that the ratio...
The JavaDoc specifies `as if`, so I think they just use temporary array as an example to describe the behavior rather than actually creating a temporary array.
I ran into this issue as well and was also missing several other methods. I haven't figured out where they are coming from yet, but replacing them with stubs worked...
It looks like JAX-B pulls in a lot of dependencies as well https://github.com/oracle/graal/issues/3225
I never found a solution and ended up getting rid of references to `java.util.prefs.Preferences` in the native image.
I added an extra layer of abstraction that forwards to java.util.prefs on Desktop and to a different mechanism (e.g. you could use attach) on mobile. I'm not sure whether there...
I can reproduce it with the CI sample from https://github.com/gluonhq/hello-gluon-ci/actions/runs/2116216341. It starts loading, but closes before showing anything. Running it as a console app to see errors yields: ``` >...
I ran into the same issue and managed to work around it by intercepting and replacing the compiler arguments, i.e., run native-image with `--native-compiler-path=${pathToScript}.sh`. I still need to validate some...
It looks like [WindowsSocketOptions.java](https://github.com/openjdk/jdk/blob/master/src/jdk.net/windows/classes/jdk/net/WindowsSocketOptions.java#L62) requires the `extnet` library. The `IP_DONTFRAGMENT` option wasn't added until Java19 (see [JDK-8285224](https://bugs.openjdk.org/browse/JDK-8285224)), so it wouldn't be surprising to not be included by the default until...