Skip to content

Commit

Permalink
Removed old debugSymbols option (only applies to EE) #9792
Browse files Browse the repository at this point in the history
  • Loading branch information
galderz authored and gsmet committed Jun 30, 2020
1 parent cacbb23 commit ee7b838
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,6 @@ public class NativeConfig {
@ConfigItem
public Optional<String> nativeImageXmx;

/**
* If debug symbols should be included. Only applicable to GraalVM EE.
*/
@ConfigItem
public boolean debugSymbols;

/**
* If the native image build should wait for a debugger to be attached before running. This is an advanced option
* and is generally only intended for those familiar with GraalVM internals
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,6 @@ public NativeImageBuildItem build(NativeConfig nativeConfig, NativeImageSourceJa
if (nativeConfig.reportExceptionStackTraces) {
command.add("-H:+ReportExceptionStackTraces");
}
if (nativeConfig.debugSymbols) {
command.add("-g");
}
if (nativeConfig.debug.enabled) {
command.add("-H:GenerateDebugInfo=1");
}
Expand Down

0 comments on commit ee7b838

Please sign in to comment.