-
Enhancement
-
Resolution: Fixed
-
P4
-
None
-
None
-
b09
The compile errors you get from HotSpot are quite large, and usually don't get entirely printed in PrintFailureReports. This has the effect that the goto mode to find the compilation error is to scroll past PrintFailureReports to get to the complete error message.
It would be nice if there was a way to turn off this feature from the command line.
I'm currently working around this "problem" with:
diff --git a/make/Init.gmk b/make/Init.gmk
--- a/make/Init.gmk
+++ b/make/Init.gmk
@@ -326,7 +326,7 @@
$(call CleanupSmartJavac)
$(call StopGlobalTimer)
$(call ReportBuildTimes)
- $(call PrintFailureReports)
+ #$(call PrintFailureReports)
$(call PrintBuildLogFailures)
$(call ReportProfileTimes)
$(PRINTF) "Hint: See doc/building.html#troubleshooting for assistance.\n\n"
It would be nice if there was a way to turn off this feature from the command line.
I'm currently working around this "problem" with:
diff --git a/make/Init.gmk b/make/Init.gmk
--- a/make/Init.gmk
+++ b/make/Init.gmk
@@ -326,7 +326,7 @@
$(call CleanupSmartJavac)
$(call StopGlobalTimer)
$(call ReportBuildTimes)
- $(call PrintFailureReports)
+ #$(call PrintFailureReports)
$(call PrintBuildLogFailures)
$(call ReportProfileTimes)
$(PRINTF) "Hint: See doc/building.html#troubleshooting for assistance.\n\n"