author | paulson |
Tue, 10 Jul 2018 09:52:22 +0100 | |
changeset 68609 | 9963bb965a0e |
parent 68374 | 8740e1241555 |
child 69165 | c360f3b603f8 |
permissions | -rw-r--r-- |
64339 | 1 |
Multi-platform support of Isabelle |
2 |
================================== |
|
35610 | 3 |
|
4 |
Preamble |
|
5 |
-------- |
|
6 |
||
7 |
The general programming model is that of a stylized ML + Scala + POSIX |
|
68002 | 8 |
environment, with a minimum of system-specific code in user-space |
9 |
tools. |
|
35610 | 10 |
|
67235 | 11 |
The Isabelle system infrastructure provides some facilities to make |
12 |
this work, e.g. see the ML and Scala modules File and Path, or |
|
48833 | 13 |
functions like Isabelle_System.bash. The settings environment also |
61294 | 14 |
provides some means for portability, e.g. the bash function |
15 |
"platform_path" to keep the impression that Windows/Cygwin adheres to |
|
64339 | 16 |
Isabelle/POSIX standards, although Poly/ML and the JVM are native on |
17 |
Windows. |
|
35610 | 18 |
|
19 |
When producing add-on tools, it is important to stay within this clean |
|
67235 | 20 |
room of Isabelle, and refrain from non-portable access to operating |
21 |
system functions. The Isabelle environment uses peculiar scripts for |
|
68002 | 22 |
GNU bash and perl as system glue: this style should be observed as far |
23 |
as possible. |
|
35610 | 24 |
|
25 |
||
26 |
Supported platforms |
|
27 |
------------------- |
|
28 |
||
29 |
The following hardware and operating system platforms are officially |
|
36204 | 30 |
supported by the Isabelle distribution (and bundled tools), with the |
64339 | 31 |
following base-line versions (which have been selected to be neither |
36204 | 32 |
too old nor too new): |
35610 | 33 |
|
63520 | 34 |
x86_64-linux Ubuntu 12.04 LTS |
35610 | 35 |
|
67088 | 36 |
x86_64-darwin Mac OS X 10.10 Yosemite (macbroy31 MacBookPro6,2) |
37 |
Mac OS X 10.11 El Capitan (macbroy2 MacPro4,1) |
|
65369
27c1b5e952bd
macbroy30 is on 10.12 Sierra (already since 04-Mar-2017) -- discontinued support for 10.8 Mountain Lion;
wenzelm
parents:
65073
diff
changeset
|
38 |
macOS 10.12 Sierra (macbroy30 MacBookPro6,2) |
68002 | 39 |
macOS 10.13 High Sierra |
48833 | 40 |
|
64339 | 41 |
x86_64-windows Windows 7 |
68374
8740e1241555
updated to current Cygwin, after 2.10.0-1 from 02-Feb-2018;
wenzelm
parents:
68002
diff
changeset
|
42 |
x86_64-cygwin Cygwin 2.10 https://isabelle.sketis.net/cygwin_2018 (x86_64/release) |
36204 | 43 |
|
44 |
All of the above platforms are 100% supported by Isabelle -- end-users |
|
44876 | 45 |
should not have to care about the differences (at least in theory). |
35610 | 46 |
|
68002 | 47 |
Exotic platforms like BSD, Solaris, NixOS are not supported. |
36204 | 48 |
|
49 |
||
66911 | 50 |
64 bit vs. 32 bit platform personality |
51 |
-------------------------------------- |
|
36204 | 52 |
|
67235 | 53 |
Isabelle requires 64 bit hardware running a 64 bit operating |
54 |
system. Windows and Mac OS X allow x86 executables as well, but for |
|
55 |
Linux this requires separate installation of 32 bit shared |
|
68002 | 56 |
libraries. The POSIX emulation on Windows via Cygwin64 works |
57 |
exclusively for x86_64. |
|
66911 | 58 |
|
68002 | 59 |
Poly/ML supports both for x86_64 and x86, and the latter is preferred |
60 |
for space and performance reasons. Java is always the x86_64 version |
|
61 |
on all platforms. |
|
48833 | 62 |
|
49144 | 63 |
Add-on executables are expected to work without manual user |
66911 | 64 |
configuration. Each component settings script needs to determine the |
49144 | 65 |
platform details appropriately. |
48833 | 66 |
|
65073 | 67 |
|
68002 | 68 |
The Isabelle settings environment provides the following important |
69 |
variables to help configuring platform-dependent tools: |
|
48833 | 70 |
|
71 |
ISABELLE_PLATFORM64 (potentially empty) |
|
66691 | 72 |
ISABELLE_PLATFORM32 (potentially empty) |
36204 | 73 |
|
68002 | 74 |
Each can be empty, but not both at the same time. Using GNU bash |
75 |
notation, tools may express their platform preference, e.g. first 64 |
|
76 |
bit and second 32 bit, or the opposite: |
|
48833 | 77 |
|
78 |
"${ISABELLE_PLATFORM64:-$ISABELLE_PLATFORM32}" |
|
68002 | 79 |
"${ISABELLE_PLATFORM32:-$ISABELLE_PLATFORM64}" |
36204 | 80 |
|
65073 | 81 |
|
68002 | 82 |
There is a another set of settings for native Windows (instead of the |
65073 | 83 |
POSIX emulation of Cygwin used before): |
84 |
||
66732 | 85 |
ISABELLE_WINDOWS_PLATFORM64 |
65073 | 86 |
ISABELLE_WINDOWS_PLATFORM32 |
87 |
||
68002 | 88 |
These are always empty on Linux and Mac OS X, and non-empty on |
89 |
Windows. They can be used like this to prefer native Windows and then |
|
90 |
Unix (first 64 bit second 32 bit): |
|
65073 | 91 |
|
92 |
"${ISABELLE_WINDOWS_PLATFORM64:-${ISABELLE_WINDOWS_PLATFORM32:-${ISABELLE_PLATFORM64:-$ISABELLE_PLATFORM32}}}" |
|
93 |
||
94 |
||
35610 | 95 |
Dependable system tools |
96 |
----------------------- |
|
97 |
||
98 |
The following portable system tools can be taken for granted: |
|
99 |
||
68002 | 100 |
* Scala on top of Java. Isabelle/Scala irons out many oddities and |
64339 | 101 |
portability issues of the Java platform. |
102 |
||
68002 | 103 |
* GNU bash as uniform shell on all platforms. The POSIX "standard" |
104 |
shell /bin/sh does *not* work portably -- there are too many |
|
105 |
non-standard implementations of it. On Debian and Ubuntu /bin/sh is |
|
106 |
actually /bin/dash and introduces many oddities. |
|
35610 | 107 |
|
58780
1f8c0da85664
discontinued python from standard system environment;
wenzelm
parents:
55438
diff
changeset
|
108 |
* Perl as largely portable system programming language, with its |
1f8c0da85664
discontinued python from standard system environment;
wenzelm
parents:
55438
diff
changeset
|
109 |
fairly robust support for processes, signals, sockets etc. |
35610 | 110 |
|
111 |
||
112 |
Known problems |
|
113 |
-------------- |
|
114 |
||
55391
eae296b5ef33
Mac OS X Lion (macbroy6) is baseline for portable executables;
wenzelm
parents:
49144
diff
changeset
|
115 |
* Mac OS X: If MacPorts is installed there is some danger that |
41668 | 116 |
accidental references to its shared libraries are created |
117 |
(e.g. libgmp). Use otool -L to check if compiled binaries also work |
|
118 |
without MacPorts. |
|
119 |
||
55391
eae296b5ef33
Mac OS X Lion (macbroy6) is baseline for portable executables;
wenzelm
parents:
49144
diff
changeset
|
120 |
* Mac OS X: If MacPorts is installed and its version of Perl takes |
35610 | 121 |
precedence over /usr/bin/perl in the PATH, then the end-user needs |
36204 | 122 |
to take care of installing extra modules, e.g. for HTTP support. |
123 |
Such add-ons are usually included in Apple's /usr/bin/perl by |
|
124 |
default. |
|
35610 | 125 |
|
55438 | 126 |
* Common Unix tools like /bin/sh, /bin/kill, sed, ulimit are |
64339 | 127 |
notoriously non-portable an should be avoided. |
66911 | 128 |
|
129 |
* The traditional "uname" Unix tool only tells about its own executable |
|
130 |
format, not the underlying platform! |