clarified options: batch-build has pide_reports disabled by default (requires significant resources);
authorwenzelm
Thu, 26 Nov 2020 17:23:33 +0100
changeset 72728 caa182bdab7a
parent 72727 2da1993fe903
child 72729 83411077c37b
clarified options: batch-build has pide_reports disabled by default (requires significant resources);
NEWS
etc/options
src/Pure/Tools/build.scala
--- a/NEWS	Thu Nov 26 17:01:19 2020 +0100
+++ b/NEWS	Thu Nov 26 17:23:33 2020 +0100
@@ -242,6 +242,9 @@
 
   ISABELLE_TOOL_JAVA_OPTIONS="$ISABELLE_TOOL_JAVA_OPTIONS -Xmx8g"
 
+This includes full PIDE markup, if option "build_pide_reports" is
+enabled.
+
 * The command-line tool "isabelle build" provides option -P DIR to
 produce PDF/HTML presentation in the specified directory; -P: refers to
 the standard directory according to ISABELLE_BROWSER_INFO /
--- a/etc/options	Thu Nov 26 17:01:19 2020 +0100
+++ b/etc/options	Thu Nov 26 17:23:33 2020 +0100
@@ -150,6 +150,9 @@
 option pide_reports : bool = true
   -- "report PIDE markup"
 
+option build_pide_reports : bool = false
+  -- "report PIDE markup in batch build"
+
 
 section "Editor Session"
 
--- a/src/Pure/Tools/build.scala	Thu Nov 26 17:01:19 2020 +0100
+++ b/src/Pure/Tools/build.scala	Thu Nov 26 17:23:33 2020 +0100
@@ -202,7 +202,7 @@
       options +
         "completion_limit=0" +
         "editor_tracing_messages=0" +
-        "pide_reports=false"  // FIXME
+        ("pide_reports=" + options.bool("build_pide_reports"))
 
     val store = Sessions.store(build_options)