merged
authorPeter Lammich
Thu, 17 Dec 2020 13:51:37 +0000
changeset 72943 b945880827ff
parent 72942 8b92a2ab5370 (current diff)
parent 72941 461327d0ad16 (diff)
child 72944 50c48773b954
merged
--- a/etc/settings	Thu Dec 17 13:51:22 2020 +0000
+++ b/etc/settings	Thu Dec 17 13:51:37 2020 +0000
@@ -150,7 +150,7 @@
 
 ISABELLE_OPAM_ROOT="$USER_HOME/.opam"
 
-ISABELLE_OCAML_VERSION="ocaml-base-compiler.4.05.0"
+ISABELLE_OCAML_VERSION="ocaml-base-compiler.4.07.0"
 
 
 ###
--- a/src/Pure/Admin/build_vampire.scala	Thu Dec 17 13:51:22 2020 +0000
+++ b/src/Pure/Admin/build_vampire.scala	Thu Dec 17 13:51:37 2020 +0000
@@ -29,6 +29,8 @@
     progress: Progress = new Progress,
     target_dir: Path = Path.current)
   {
+    Isabelle_System.require_command("git", "cmake")
+
     Isabelle_System.with_tmp_dir("build")(tmp_dir =>
     {
       /* component and platform */
--- a/src/Pure/Admin/build_zipperposition.scala	Thu Dec 17 13:51:22 2020 +0000
+++ b/src/Pure/Admin/build_zipperposition.scala	Thu Dec 17 13:51:37 2020 +0000
@@ -9,7 +9,7 @@
 
 object Build_Zipperposition
 {
-  val default_version = "1.6"
+  val default_version = "2.0"
 
 
   /* build Zipperposition */
@@ -22,7 +22,7 @@
   {
     Isabelle_System.with_tmp_dir("build")(build_dir =>
     {
-      Isabelle_System.require_command("patchelf")
+      if (!Platform.is_windows) Isabelle_System.require_command("patchelf")
 
 
       /* component */
@@ -60,8 +60,10 @@
       val exe_path = prg_path.platform_exe
       File.copy(build_dir + Path.basic("bin") + prg_path, platform_dir + exe_path)
 
-      Executable.libraries_closure(
-        platform_dir + exe_path, filter = Set("libgmp"), patchelf = true)
+      if (!Platform.is_windows) {
+        Executable.libraries_closure(
+          platform_dir + exe_path, filter = Set("libgmp"), patchelf = true)
+      }
 
 
       /* settings */