--- a/src/Pure/System/gui_setup.scala Sat Apr 17 22:58:29 2010 +0200
+++ b/src/Pure/System/gui_setup.scala Sat Apr 17 23:05:52 2010 +0200
@@ -49,7 +49,10 @@
try {
val isabelle_system = new Isabelle_System
text.append("Isabelle home: " + isabelle_system.getenv("ISABELLE_HOME") + "\n")
- text.append("Isabelle java: " + isabelle_system.this_java())
+ text.append("Isabelle platform: " + isabelle_system.getenv("ISABELLE_PLATFORM") + "\n")
+ val platform64 = isabelle_system.getenv("ISABELLE_PLATFORM64")
+ if (platform64 != "") text.append("Isabelle platform (64 bit): " + platform64 + "\n")
+ text.append("Isabelle java: " + isabelle_system.this_java() + "\n")
} catch {
case e: RuntimeException => text.append(e.getMessage + "\n")
}