| author | wenzelm | 
| Mon, 07 Nov 2016 21:52:41 +0100 | |
| changeset 64475 | d751bef76e5c | 
| parent 64406 | 492de9062cd2 | 
| child 65073 | b5bf76cf2b4e | 
| 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 | |
| 48833 | 8 | environment, with as little system-specific code in user-space tools | 
| 9 | as possible. | |
| 35610 | 10 | |
| 11 | The basic Isabelle system infrastructure provides some facilities to | |
| 48833 | 12 | make this work, e.g. see the ML and Scala modules File and Path, or | 
| 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 | |
| 20 | room of Isabelle, and refrain from overly ambitious system hacking. | |
| 64339 | 21 | The existing Isabelle bash scripts follow a peculiar style that | 
| 22 | reflects long years of experience in getting system plumbing right. | |
| 35610 | 23 | |
| 24 | ||
| 25 | Supported platforms | |
| 26 | ------------------- | |
| 27 | ||
| 28 | The following hardware and operating system platforms are officially | |
| 36204 | 29 | supported by the Isabelle distribution (and bundled tools), with the | 
| 64339 | 30 | following base-line versions (which have been selected to be neither | 
| 36204 | 31 | too old nor too new): | 
| 35610 | 32 | |
| 63520 | 33 | x86-linux Ubuntu 12.04 LTS | 
| 34 | x86_64-linux Ubuntu 12.04 LTS | |
| 35610 | 35 | |
| 64406 
492de9062cd2
more specific hardware information: relevant for ultimate Mac OS X version;
 wenzelm parents: 
64402diff
changeset | 36 | x86_64-darwin Mac OS X 10.8 Mountain Lion (macbroy30 MacBookPro6,2) | 
| 
492de9062cd2
more specific hardware information: relevant for ultimate Mac OS X version;
 wenzelm parents: 
64402diff
changeset | 37 | Mac OS X 10.9 Mavericks (macbroy2 MacPro4,1) | 
| 
492de9062cd2
more specific hardware information: relevant for ultimate Mac OS X version;
 wenzelm parents: 
64402diff
changeset | 38 | Mac OS X 10.10 Yosemite (macbroy31 MacBookPro6,2) | 
| 64402 
4f0acbd97491
latest Mac OS X versions *are* still supported, but presently without formal reference systems;
 wenzelm parents: 
64387diff
changeset | 39 | Mac OS X 10.11 El Capitan (?) | 
| 
4f0acbd97491
latest Mac OS X versions *are* still supported, but presently without formal reference systems;
 wenzelm parents: 
64387diff
changeset | 40 | macOS 10.12 Sierra (?) | 
| 48833 | 41 | |
| 64339 | 42 | x86-windows Windows 7 | 
| 43 | x86_64-windows Windows 7 | |
| 64387 | 44 | x86-cygwin Cygwin 2.6 http://isabelle.in.tum.de/cygwin_2016-1 (x86/release) | 
| 36204 | 45 | |
| 46 | All of the above platforms are 100% supported by Isabelle -- end-users | |
| 44876 | 47 | should not have to care about the differences (at least in theory). | 
| 35610 | 48 | |
| 64339 | 49 | Fringe platforms like BSD or Solaris are not supported. | 
| 36204 | 50 | |
| 51 | ||
| 52 | 32 bit vs. 64 bit platforms | |
| 53 | --------------------------- | |
| 54 | ||
| 48833 | 55 | Most users have 64 bit hardware and are running a 64 bit operating | 
| 55391 
eae296b5ef33
Mac OS X Lion (macbroy6) is baseline for portable executables;
 wenzelm parents: 
49144diff
changeset | 56 | system by default. For Linux this usually means missing 32 bit shared | 
| 48833 | 57 | libraries, so native x86_64-linux needs to be used by default, despite | 
| 58 | its doubled space requirements for Poly/ML heaps. For Mac OS X, the | |
| 59 | x86-darwin personality usually works seamlessly for C/C++ programs, | |
| 64339 | 60 | but the Java platform is only available for x86_64-darwin. | 
| 48833 | 61 | |
| 49144 | 62 | Add-on executables are expected to work without manual user | 
| 63 | configuration. Each component settings script needs to determine the | |
| 64 | platform details appropriately. | |
| 48833 | 65 | |
| 66 | The Isabelle settings environment provides the following variables to | |
| 67 | help configuring platform-dependent tools: | |
| 68 | ||
| 69 | ISABELLE_PLATFORM64 (potentially empty) | |
| 70 | ISABELLE_PLATFORM32 | |
| 71 | ISABELLE_PLATFORM | |
| 36204 | 72 | |
| 73 | The ISABELLE_PLATFORM setting variable refers to the 32 bit version of | |
| 48833 | 74 | the platform, even on 64 bit hardware. Using regular bash notation, | 
| 75 | tools may express their preference for 64 bit with a fall-back for 32 | |
| 76 | bit as follows: | |
| 77 | ||
| 78 |   "${ISABELLE_PLATFORM64:-$ISABELLE_PLATFORM32}"
 | |
| 36204 | 79 | |
| 48833 | 80 | Moreover note that ML and JVM usually have a different idea of the | 
| 81 | platform, depending on the respective binaries that are actually run. | |
| 64339 | 82 | Poly/ML 5.6.x performs best in 32 bit mode, even for large | 
| 49144 | 83 | applications, thanks to its sophisticated heap management. The JVM | 
| 84 | usually works better in 64 bit mode, which allows its heap to grow | |
| 85 | beyond 2 GB. | |
| 36204 | 86 | |
| 64339 | 87 | The traditional "uname" Unix tool only tells about its own executable | 
| 88 | format, not the underlying platform! | |
| 35610 | 89 | |
| 90 | ||
| 91 | Dependable system tools | |
| 92 | ----------------------- | |
| 93 | ||
| 94 | The following portable system tools can be taken for granted: | |
| 95 | ||
| 64339 | 96 | * Scala on top of Java 8. Isabelle/Scala irons out many oddities and | 
| 97 | portability issues of the Java platform. | |
| 98 | ||
| 36204 | 99 | * GNU bash as uniform shell on all platforms. The POSIX "standard" | 
| 64339 | 100 | shell /bin/sh does *not* work -- there are too many non-standard | 
| 101 | implementations of it. | |
| 35610 | 102 | |
| 58780 
1f8c0da85664
discontinued python from standard system environment;
 wenzelm parents: 
55438diff
changeset | 103 | * Perl as largely portable system programming language, with its | 
| 
1f8c0da85664
discontinued python from standard system environment;
 wenzelm parents: 
55438diff
changeset | 104 | fairly robust support for processes, signals, sockets etc. | 
| 35610 | 105 | |
| 106 | ||
| 107 | Known problems | |
| 108 | -------------- | |
| 109 | ||
| 55391 
eae296b5ef33
Mac OS X Lion (macbroy6) is baseline for portable executables;
 wenzelm parents: 
49144diff
changeset | 110 | * Mac OS X: If MacPorts is installed there is some danger that | 
| 41668 | 111 | accidental references to its shared libraries are created | 
| 112 | (e.g. libgmp). Use otool -L to check if compiled binaries also work | |
| 113 | without MacPorts. | |
| 114 | ||
| 55391 
eae296b5ef33
Mac OS X Lion (macbroy6) is baseline for portable executables;
 wenzelm parents: 
49144diff
changeset | 115 | * Mac OS X: If MacPorts is installed and its version of Perl takes | 
| 35610 | 116 | precedence over /usr/bin/perl in the PATH, then the end-user needs | 
| 36204 | 117 | to take care of installing extra modules, e.g. for HTTP support. | 
| 118 | Such add-ons are usually included in Apple's /usr/bin/perl by | |
| 119 | default. | |
| 35610 | 120 | |
| 121 | * The Java runtime has its own idea about the underlying platform, | |
| 48833 | 122 | which affects Java native libraries in particular. In | 
| 49144 | 123 | Isabelle/Scala the function isabelle.Platform.jvm_platform | 
| 124 | identifies the JVM platform. Since a particular Java version is | |
| 125 | always bundled with Isabelle, the resulting settings also provide | |
| 126 | some clues about its platform, without running it. | |
| 55438 | 127 | |
| 128 | * Common Unix tools like /bin/sh, /bin/kill, sed, ulimit are | |
| 64339 | 129 | notoriously non-portable an should be avoided. |