author | paulson <lp15@cam.ac.uk> |
Sun, 20 May 2018 18:37:34 +0100 | |
changeset 68239 | 0764ee22a4d1 |
parent 67783 | 839de121665c |
child 69277 | 258bef08b31e |
permissions | -rw-r--r-- |
64483 | 1 |
/* Title: Pure/Admin/build_polyml.scala |
2 |
Author: Makarius |
|
3 |
||
4 |
Build Poly/ML from sources. |
|
5 |
*/ |
|
6 |
||
7 |
package isabelle |
|
8 |
||
9 |
||
10 |
object Build_PolyML |
|
11 |
{ |
|
65880 | 12 |
/** platform-specific build **/ |
64496 | 13 |
|
64483 | 14 |
sealed case class Platform_Info( |
15 |
options: List[String] = Nil, |
|
16 |
options_multilib: List[String] = Nil, |
|
64487 | 17 |
setup: String = "", |
64483 | 18 |
copy_files: List[String] = Nil) |
67598 | 19 |
{ |
20 |
def platform_options(arch_64: Boolean): List[String] = |
|
21 |
if (!arch_64 && Isabelle_System.getenv("ISABELLE_PLATFORM64") == "x86_64-linux") |
|
22 |
options_multilib |
|
23 |
else options |
|
24 |
} |
|
64483 | 25 |
|
26 |
private val platform_info = Map( |
|
27 |
"x86-linux" -> |
|
28 |
Platform_Info( |
|
29 |
options_multilib = |
|
67580
eb64467e8bcf
more robust access to shared libraries for poly executable: avoid global change of LD_LIBRARY_PATH (e.g. relevant for subprocesses);
wenzelm
parents:
66998
diff
changeset
|
30 |
List("--build=i386", "CFLAGS=-m32 -O3", "CXXFLAGS=-m32 -O3", "CCASFLAGS=-m32", |
67609
738b4d4eeb61
no --enable-shared: leads to slow bigint operations (e.g. in session HOL-ODE-Examples);
wenzelm
parents:
67600
diff
changeset
|
31 |
"LDFLAGS=-Wl,-rpath,_DUMMY_", "--without-gmp"), |
738b4d4eeb61
no --enable-shared: leads to slow bigint operations (e.g. in session HOL-ODE-Examples);
wenzelm
parents:
67600
diff
changeset
|
32 |
options = List("LDFLAGS=-Wl,-rpath,_DUMMY_")), |
67580
eb64467e8bcf
more robust access to shared libraries for poly executable: avoid global change of LD_LIBRARY_PATH (e.g. relevant for subprocesses);
wenzelm
parents:
66998
diff
changeset
|
33 |
"x86_64-linux" -> |
eb64467e8bcf
more robust access to shared libraries for poly executable: avoid global change of LD_LIBRARY_PATH (e.g. relevant for subprocesses);
wenzelm
parents:
66998
diff
changeset
|
34 |
Platform_Info( |
67609
738b4d4eeb61
no --enable-shared: leads to slow bigint operations (e.g. in session HOL-ODE-Examples);
wenzelm
parents:
67600
diff
changeset
|
35 |
options = List("LDFLAGS=-Wl,-rpath,_DUMMY_")), |
64483 | 36 |
"x86-darwin" -> |
37 |
Platform_Info( |
|
38 |
options = |
|
64484 | 39 |
List("--build=i686-darwin", "CFLAGS=-arch i686 -O3 -I../libffi/include", |
40 |
"CXXFLAGS=-arch i686 -O3 -I../libffi/include", "CCASFLAGS=-arch i686 -O3", |
|
67597 | 41 |
"LDFLAGS=-segprot POLY rwx rwx -L/usr/local/lib32"), |
64503
365021be3c5b
clarified setup: avoid alternative C compiler tools, e.g. from Homebrew or MacPorts;
wenzelm
parents:
64502
diff
changeset
|
42 |
setup = "PATH=/usr/bin:/bin:/usr/sbin:/sbin"), |
64483 | 43 |
"x86_64-darwin" -> |
44 |
Platform_Info( |
|
45 |
options = |
|
64484 | 46 |
List("--build=x86_64-darwin", "CFLAGS=-arch x86_64 -O3 -I../libffi/include", |
47 |
"CXXFLAGS=-arch x86_64 -O3 -I../libffi/include", "CCASFLAGS=-arch x86_64", |
|
67600
d515b6140381
no --enable-shared for x86_64-darwin: does not work on some test machine;
wenzelm
parents:
67599
diff
changeset
|
48 |
"LDFLAGS=-segprot POLY rwx rwx"), |
64503
365021be3c5b
clarified setup: avoid alternative C compiler tools, e.g. from Homebrew or MacPorts;
wenzelm
parents:
64502
diff
changeset
|
49 |
setup = "PATH=/usr/bin:/bin:/usr/sbin:/sbin"), |
64483 | 50 |
"x86-windows" -> |
51 |
Platform_Info( |
|
52 |
options = |
|
67597 | 53 |
List("--host=i686-w32-mingw32", "CPPFLAGS=-I/mingw32/include", "--disable-windows-gui"), |
64494 | 54 |
setup = |
55 |
"""PATH=/usr/bin:/bin:/mingw32/bin |
|
56 |
export CONFIG_SITE=/etc/config.site""", |
|
64483 | 57 |
copy_files = |
64504 | 58 |
List("$MSYS/mingw32/bin/libgcc_s_dw2-1.dll", |
59 |
"$MSYS/mingw32/bin/libgmp-10.dll", |
|
60 |
"$MSYS/mingw32/bin/libstdc++-6.dll")), |
|
64483 | 61 |
"x86_64-windows" -> |
62 |
Platform_Info( |
|
63 |
options = |
|
67597 | 64 |
List("--host=x86_64-w64-mingw32", "CPPFLAGS=-I/mingw64/include", "--disable-windows-gui"), |
64494 | 65 |
setup = |
66 |
"""PATH=/usr/bin:/bin:/mingw64/bin |
|
67 |
export CONFIG_SITE=/etc/config.site""", |
|
64483 | 68 |
copy_files = |
64504 | 69 |
List("$MSYS/mingw64/bin/libgcc_s_seh-1.dll", |
70 |
"$MSYS/mingw64/bin/libgmp-10.dll", |
|
71 |
"$MSYS/mingw64/bin/libstdc++-6.dll"))) |
|
64483 | 72 |
|
73 |
def build_polyml( |
|
64489 | 74 |
root: Path, |
64495 | 75 |
sha1_root: Option[Path] = None, |
64909 | 76 |
progress: Progress = No_Progress, |
64493 | 77 |
arch_64: Boolean = false, |
64485
e996c0a5eca9
support other bash executable (notably for msys on Windows);
wenzelm
parents:
64484
diff
changeset
|
78 |
options: List[String] = Nil, |
65880 | 79 |
msys_root: Option[Path] = None) |
64483 | 80 |
{ |
64489 | 81 |
if (!((root + Path.explode("configure")).is_file && (root + Path.explode("PolyML")).is_dir)) |
82 |
error("Bad Poly/ML root directory: " + root) |
|
64483 | 83 |
|
64493 | 84 |
val platform = |
85 |
(if (arch_64) "x86_64" else "x86") + |
|
86 |
(if (Platform.is_windows) "-windows" else if (Platform.is_macos) "-darwin" else "-linux") |
|
87 |
||
64483 | 88 |
val info = |
89 |
platform_info.get(platform) getOrElse |
|
90 |
error("Bad platform identifier: " + quote(platform)) |
|
91 |
||
64504 | 92 |
val settings = |
93 |
msys_root match { |
|
94 |
case None if Platform.is_windows => |
|
95 |
error("Windows requires specification of msys root directory") |
|
96 |
case None => Isabelle_System.settings() |
|
97 |
case Some(msys) => Isabelle_System.settings() + ("MSYS" -> msys.expand.implode) |
|
98 |
} |
|
64492 | 99 |
|
64491 | 100 |
|
64495 | 101 |
/* bash */ |
102 |
||
64504 | 103 |
def bash( |
104 |
cwd: Path, script: String, redirect: Boolean = false, echo: Boolean = false): Process_Result = |
|
105 |
{ |
|
106 |
val script1 = |
|
107 |
msys_root match { |
|
108 |
case None => script |
|
109 |
case Some(msys) => |
|
110 |
File.bash_path(msys + Path.explode("usr/bin/bash")) + " -c " + Bash.string(script) |
|
111 |
} |
|
112 |
progress.bash(script1, cwd = cwd.file, redirect = redirect, echo = echo) |
|
113 |
} |
|
64495 | 114 |
|
115 |
||
64491 | 116 |
/* configure and make */ |
117 |
||
64483 | 118 |
val configure_options = |
67783
839de121665c
more robust build: prevent problems seen with Poly/ML eb94e2820013 on Mac OS X;
wenzelm
parents:
67609
diff
changeset
|
119 |
List("--disable-shared", "--enable-intinf-as-int", "--with-gmp") ::: |
839de121665c
more robust build: prevent problems seen with Poly/ML eb94e2820013 on Mac OS X;
wenzelm
parents:
67609
diff
changeset
|
120 |
info.platform_options(arch_64) ::: options |
64483 | 121 |
|
64495 | 122 |
bash(root, |
64487 | 123 |
info.setup + "\n" + |
64485
e996c0a5eca9
support other bash executable (notably for msys on Windows);
wenzelm
parents:
64484
diff
changeset
|
124 |
""" |
e996c0a5eca9
support other bash executable (notably for msys on Windows);
wenzelm
parents:
64484
diff
changeset
|
125 |
[ -f Makefile ] && make distclean |
e996c0a5eca9
support other bash executable (notably for msys on Windows);
wenzelm
parents:
64484
diff
changeset
|
126 |
{ |
e996c0a5eca9
support other bash executable (notably for msys on Windows);
wenzelm
parents:
64484
diff
changeset
|
127 |
./configure --prefix="$PWD/target" """ + Bash.strings(configure_options) + """ |
e996c0a5eca9
support other bash executable (notably for msys on Windows);
wenzelm
parents:
64484
diff
changeset
|
128 |
rm -rf target |
e996c0a5eca9
support other bash executable (notably for msys on Windows);
wenzelm
parents:
64484
diff
changeset
|
129 |
make compiler && make compiler && make install |
e996c0a5eca9
support other bash executable (notably for msys on Windows);
wenzelm
parents:
64484
diff
changeset
|
130 |
} || { echo "Build failed" >&2; exit 2; } |
64501 | 131 |
""", redirect = true, echo = true).check |
64485
e996c0a5eca9
support other bash executable (notably for msys on Windows);
wenzelm
parents:
64484
diff
changeset
|
132 |
|
64495 | 133 |
val ldd_files = |
66998 | 134 |
{ |
135 |
val ldd_pattern = |
|
136 |
if (Platform.is_linux) Some(("ldd", """\s*libgmp.*=>\s*(\S+).*""".r)) |
|
67592
66253039d5ca
enforce shared libpoly on all platforms, with File.copy before File.move;
wenzelm
parents:
67589
diff
changeset
|
137 |
else if (Platform.is_macos) Some(("otool -L", """\s*(\S+lib(?:polyml|gmp).*dylib).*""".r)) |
66998 | 138 |
else None |
139 |
ldd_pattern match { |
|
140 |
case Some((ldd, pattern)) => |
|
141 |
val lines = bash(root, ldd + " target/bin/poly").check.out_lines |
|
142 |
for { line <- lines; List(lib) <- pattern.unapplySeq(line) } yield lib |
|
143 |
case None => Nil |
|
64491 | 144 |
} |
66998 | 145 |
} |
64491 | 146 |
|
147 |
||
64495 | 148 |
/* sha1 library */ |
149 |
||
150 |
val sha1_files = |
|
151 |
if (sha1_root.isDefined) { |
|
152 |
val dir1 = sha1_root.get |
|
64501 | 153 |
bash(dir1, "./build " + platform, redirect = true, echo = true).check |
64505 | 154 |
|
64495 | 155 |
val dir2 = dir1 + Path.explode(platform) |
156 |
File.read_dir(dir2).map(entry => dir2.implode + "/" + entry) |
|
157 |
} |
|
158 |
else Nil |
|
159 |
||
160 |
||
64491 | 161 |
/* target */ |
64484 | 162 |
|
65880 | 163 |
val target = Path.explode(platform) |
64488 | 164 |
Isabelle_System.rm_tree(target) |
64483 | 165 |
Isabelle_System.mkdirs(target) |
166 |
||
67592
66253039d5ca
enforce shared libpoly on all platforms, with File.copy before File.move;
wenzelm
parents:
67589
diff
changeset
|
167 |
for (file <- info.copy_files ::: ldd_files ::: sha1_files) |
66253039d5ca
enforce shared libpoly on all platforms, with File.copy before File.move;
wenzelm
parents:
67589
diff
changeset
|
168 |
File.copy(Path.explode(file).expand_env(settings), target) |
66253039d5ca
enforce shared libpoly on all platforms, with File.copy before File.move;
wenzelm
parents:
67589
diff
changeset
|
169 |
|
64483 | 170 |
for { |
64484 | 171 |
d <- List("target/bin", "target/lib") |
64489 | 172 |
dir = root + Path.explode(d) |
64483 | 173 |
entry <- File.read_dir(dir) |
174 |
} File.move(dir + Path.explode(entry), target) |
|
175 |
||
67580
eb64467e8bcf
more robust access to shared libraries for poly executable: avoid global change of LD_LIBRARY_PATH (e.g. relevant for subprocesses);
wenzelm
parents:
66998
diff
changeset
|
176 |
|
67584 | 177 |
/* poly: library path */ |
67580
eb64467e8bcf
more robust access to shared libraries for poly executable: avoid global change of LD_LIBRARY_PATH (e.g. relevant for subprocesses);
wenzelm
parents:
66998
diff
changeset
|
178 |
|
67582
bf5c69acf2be
built-in library path for (optional) libgmp on macos;
wenzelm
parents:
67581
diff
changeset
|
179 |
if (Platform.is_linux) { |
bf5c69acf2be
built-in library path for (optional) libgmp on macos;
wenzelm
parents:
67581
diff
changeset
|
180 |
bash(target, "chrpath -r '$ORIGIN' poly", echo = true).check |
bf5c69acf2be
built-in library path for (optional) libgmp on macos;
wenzelm
parents:
67581
diff
changeset
|
181 |
} |
bf5c69acf2be
built-in library path for (optional) libgmp on macos;
wenzelm
parents:
67581
diff
changeset
|
182 |
else if (Platform.is_macos) { |
bf5c69acf2be
built-in library path for (optional) libgmp on macos;
wenzelm
parents:
67581
diff
changeset
|
183 |
for (file <- ldd_files) { |
bf5c69acf2be
built-in library path for (optional) libgmp on macos;
wenzelm
parents:
67581
diff
changeset
|
184 |
bash(target, |
bf5c69acf2be
built-in library path for (optional) libgmp on macos;
wenzelm
parents:
67581
diff
changeset
|
185 |
"""install_name_tool -change """ + Bash.string(file) + " " + |
bf5c69acf2be
built-in library path for (optional) libgmp on macos;
wenzelm
parents:
67581
diff
changeset
|
186 |
Bash.string("@executable_path/" + Path.explode(file).base_name) + " poly").check |
bf5c69acf2be
built-in library path for (optional) libgmp on macos;
wenzelm
parents:
67581
diff
changeset
|
187 |
} |
bf5c69acf2be
built-in library path for (optional) libgmp on macos;
wenzelm
parents:
67581
diff
changeset
|
188 |
} |
67584 | 189 |
|
190 |
||
191 |
/* polyc: directory prefix */ |
|
192 |
||
193 |
{ |
|
194 |
val polyc_path = target + Path.explode("polyc") |
|
67587 | 195 |
|
196 |
val Header = "#! */bin/sh".r |
|
67584 | 197 |
val polyc_patched = |
198 |
split_lines(File.read(polyc_path)) match { |
|
67587 | 199 |
case Header() :: lines => |
200 |
val lines1 = |
|
201 |
lines.map(line => |
|
202 |
if (line.startsWith("prefix=")) "prefix=\"$(cd \"$(dirname \"$0\")\"; pwd)\"" |
|
203 |
else if (line.startsWith("BINDIR=")) "BINDIR=\"$prefix\"" |
|
67584 | 204 |
else if (line.startsWith("LIBDIR=")) "LIBDIR=\"$prefix\"" |
205 |
else line) |
|
67587 | 206 |
cat_lines("#!/usr/bin/env bash" ::lines1) |
67584 | 207 |
case lines => |
67587 | 208 |
error(cat_lines("Cannot patch polyc -- undetected header:" :: lines.take(3))) |
67584 | 209 |
} |
210 |
File.write(polyc_path, polyc_patched) |
|
211 |
} |
|
64483 | 212 |
} |
213 |
||
214 |
||
64496 | 215 |
|
65880 | 216 |
/** skeleton for component **/ |
217 |
||
218 |
def build_polyml_component(component: Path, sha1_root: Option[Path] = None) |
|
219 |
{ |
|
220 |
if (component.is_dir) error("Directory already exists: " + component) |
|
221 |
||
222 |
val etc = component + Path.explode("etc") |
|
223 |
Isabelle_System.mkdirs(etc) |
|
224 |
File.copy(Path.explode("~~/Admin/polyml/settings"), etc) |
|
225 |
File.copy(Path.explode("~~/Admin/polyml/README"), component) |
|
64483 | 226 |
|
65880 | 227 |
sha1_root match { |
228 |
case Some(dir) => |
|
67599 | 229 |
Mercurial.repository(dir).archive(File.standard_path(component + Path.explode("sha1"))) |
65880 | 230 |
case None => |
231 |
} |
|
232 |
} |
|
233 |
||
234 |
||
235 |
||
236 |
/** Isabelle tool wrappers **/ |
|
237 |
||
238 |
val isabelle_tool1 = |
|
239 |
Isabelle_Tool("build_polyml", "build Poly/ML from sources", args => |
|
64500
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
240 |
{ |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
241 |
Command_Line.tool0 { |
64504 | 242 |
var msys_root: Option[Path] = None |
64500
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
243 |
var arch_64 = false |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
244 |
var sha1_root: Option[Path] = None |
64483 | 245 |
|
64500
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
246 |
val getopts = Getopts(""" |
64489 | 247 |
Usage: isabelle build_polyml [OPTIONS] ROOT [CONFIGURE_OPTIONS] |
64483 | 248 |
|
249 |
Options are: |
|
64504 | 250 |
-M DIR msys root directory (for Windows) |
64493 | 251 |
-m ARCH processor architecture (32=x86, 64=x86_64, default: x86) |
64499 | 252 |
-s DIR sha1 sources, see https://bitbucket.org/isabelle_project/sha1 |
64483 | 253 |
|
64499 | 254 |
Build Poly/ML in the ROOT directory of its sources, with additional |
67593 | 255 |
CONFIGURE_OPTIONS (e.g. --without-gmp). |
64483 | 256 |
""", |
64504 | 257 |
"M:" -> (arg => msys_root = Some(Path.explode(arg))), |
64500
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
258 |
"m:" -> |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
259 |
{ |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
260 |
case "32" | "x86" => arch_64 = false |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
261 |
case "64" | "x86_64" => arch_64 = true |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
262 |
case bad => error("Bad processor architecture: " + quote(bad)) |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
263 |
}, |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
264 |
"s:" -> (arg => sha1_root = Some(Path.explode(arg)))) |
64483 | 265 |
|
64500
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
266 |
val more_args = getopts(args) |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
267 |
val (root, options) = |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
268 |
more_args match { |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
269 |
case root :: options => (Path.explode(root), options) |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
270 |
case Nil => getopts.usage() |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
271 |
} |
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
272 |
build_polyml(root, sha1_root = sha1_root, progress = new Console_Progress, |
65880 | 273 |
arch_64 = arch_64, options = options, msys_root = msys_root) |
274 |
} |
|
275 |
}, admin = true) |
|
276 |
||
277 |
val isabelle_tool2 = |
|
278 |
Isabelle_Tool("build_polyml_component", "make skeleton for Poly/ML component", args => |
|
279 |
{ |
|
280 |
Command_Line.tool0 { |
|
281 |
var sha1_root: Option[Path] = None |
|
282 |
||
283 |
val getopts = Getopts(""" |
|
284 |
Usage: isabelle build_polyml_component [OPTIONS] TARGET |
|
285 |
||
286 |
Options are: |
|
287 |
-s DIR sha1 sources, see https://bitbucket.org/isabelle_project/sha1 |
|
288 |
||
289 |
Make skeleton for Poly/ML component in directory TARGET. |
|
290 |
""", |
|
291 |
"s:" -> (arg => sha1_root = Some(Path.explode(arg)))) |
|
292 |
||
293 |
val more_args = getopts(args) |
|
294 |
val component = |
|
295 |
more_args match { |
|
296 |
case List(arg) => Path.explode(arg) |
|
297 |
case _ => getopts.usage() |
|
298 |
} |
|
299 |
build_polyml_component(component, sha1_root = sha1_root) |
|
64500
159ea1055b39
back to regular Isabelle tool (reverting abc34a149690);
wenzelm
parents:
64499
diff
changeset
|
300 |
} |
64502 | 301 |
}, admin = true) |
64483 | 302 |
} |