Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions substratevm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ This changelog summarizes major changes to GraalVM Native Image.
* (GR-44216) Native Image is now shipped as part of the GraalVM JDK and thus no longer needs to be installed via `gu install native-image`.
* (GR-44105) A warning is displayed when trying to generate debug info on macOS since that is not supported. It is now an error to use `-H:+StripDebugInfo` on macOS or `-H:-StripDebugInfo` on Windows since those values are not supported.
* (GR-43966) Remove analysis options -H:AnalysisStatisticsFile and -H:ImageBuildStatisticsFile. Output files are now written to fixed subdirectories relative to image location (reports/image_build_statistics.json).
* (GR-40641) Dynamic linking of AWT libraries on Linux.

## Version 22.3.0
* (GR-35721) Remove old build output style and the `-H:±BuildOutputUseNewStyle` option.
Expand Down
6 changes: 0 additions & 6 deletions substratevm/mx.substratevm/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,6 @@
"jdk.internal.reflect",
"jdk.internal.util",
],
"java.desktop": [
"sun.java2d",
"sun.java2d.pipe",
],
"java.management": [
"com.sun.jmx.mbeanserver",
"sun.management",
Expand Down Expand Up @@ -610,7 +606,6 @@
"com.oracle.graal.reachability"
],
"requires" : [
"java.desktop",
"java.instrument",
"java.security.sasl",
"java.smartcardio",
Expand Down Expand Up @@ -1342,7 +1337,6 @@
"java.management",
"jdk.management",
"java.xml.crypto",
"java.desktop",
"java.security.sasl",
"java.smartcardio",
"java.net.http",
Expand Down
Loading