Skip to content

Commit

Permalink
Do not use SourceMappings for DebugCodeInfo generation per-default
Browse files Browse the repository at this point in the history
  • Loading branch information
olpaw committed May 2, 2023
1 parent b70c640 commit f79c0a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ private static void validateStripDebugInfo(HostedOptionKey<Boolean> optionKey) {
public static final HostedOptionKey<Integer> DebugCodeInfoMaxDepth = new HostedOptionKey<>(Integer.MAX_VALUE);

@Option(help = "Do not use SourceMappings for generating DebugCodeInfo (i.e. only use Infopoints)") //
public static final HostedOptionKey<Boolean> DebugCodeInfoUseSourceMappings = new HostedOptionKey<>(true);
public static final HostedOptionKey<Boolean> DebugCodeInfoUseSourceMappings = new HostedOptionKey<>(false);

@Option(help = "Emit debuginfo debug.svm.imagebuild.* sections with detailed image-build options.")//
public static final HostedOptionKey<Boolean> UseImagebuildDebugSections = new HostedOptionKey<>(true);
Expand Down

0 comments on commit f79c0a5

Please sign in to comment.