Skip to content

Commit c095a4e

Browse files
committed
switch off the new build output
1 parent f851687 commit c095a4e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

substratevm/src/com.oracle.graal.pointsto/src/com/oracle/graal/pointsto/AbstractAnalysisEngine.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ public void printTimers() {
128128

129129
@Override
130130
public void printTimerStatistics(PrintWriter out) {
131+
// todo print reachability here
131132
StatisticsPrinter.print(out, "features_time_ms", processFeaturesTimer.getTotalTime());
132133
StatisticsPrinter.print(out, "total_analysis_time_ms", analysisTimer.getTotalTime());
133134

substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/SubstrateOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ public Boolean getValue(OptionValues values) {
279279
* Build output options.
280280
*/
281281
@Option(help = "Use new build output style", type = OptionType.User)//
282-
public static final HostedOptionKey<Boolean> BuildOutputUseNewStyle = new HostedOptionKey<>(true);
282+
public static final HostedOptionKey<Boolean> BuildOutputUseNewStyle = new HostedOptionKey<>(false);
283283

284284
@Option(help = "Prefix build output with '<pid>:<image name>'", type = OptionType.User)//
285285
public static final HostedOptionKey<Boolean> BuildOutputPrefix = new HostedOptionKey<>(false);

0 commit comments

Comments
 (0)