author | wenzelm |
Sun, 24 Nov 2019 22:54:42 +0100 | |
changeset 71160 | 625df1eb7873 |
parent 71118 | 2bc568573a47 |
child 71492 | a296d3697e50 |
permissions | -rw-r--r-- |
38469 | 1 |
Poly/ML for Isabelle |
2 |
==================== |
|
27012 | 3 |
|
70988 | 4 |
This test version of Poly/ML pre-5.8.1 is based on the repository |
71160
625df1eb7873
updated to polyml-5.8.1-20191113 test version (Poly/ML 055f20cdc326);
wenzelm
parents:
71118
diff
changeset
|
5 |
snapshot https://github.com/polyml/polyml/commit/055f20cdc326 |
57689
e189ba8a64b9
updated to polyml-5.5.2-1 which addresses two hard crashes;
wenzelm
parents:
56958
diff
changeset
|
6 |
|
69903 | 7 |
The Isabelle repository provides an administrative tool "isabelle |
8 |
build_polyml", which can be used in the polyml component directory as |
|
69704 | 9 |
follows. |
62281
707f9b182f4f
evade a potential conflict of /bin/bash versus /bin/sh -> dash (notably on Ubuntu and Debian) -- note that execvpe does not exist on old glibc on Ubuntu 10.04 LTS, but the environ should be unchanged;
wenzelm
parents:
62252
diff
changeset
|
10 |
|
64544
d23b7c9b9dd4
updated Poly/ML repository test version (08-Dec-2016);
wenzelm
parents:
62281
diff
changeset
|
11 |
* Linux: |
62281
707f9b182f4f
evade a potential conflict of /bin/bash versus /bin/sh -> dash (notably on Ubuntu and Debian) -- note that execvpe does not exist on old glibc on Ubuntu 10.04 LTS, but the environ should be unchanged;
wenzelm
parents:
62252
diff
changeset
|
12 |
|
67593 | 13 |
$ isabelle build_polyml -m32 -s sha1 src |
14 |
$ isabelle build_polyml -m64 -s sha1 src |
|
62281
707f9b182f4f
evade a potential conflict of /bin/bash versus /bin/sh -> dash (notably on Ubuntu and Debian) -- note that execvpe does not exist on old glibc on Ubuntu 10.04 LTS, but the environ should be unchanged;
wenzelm
parents:
62252
diff
changeset
|
15 |
|
67595 | 16 |
* Mac OS X: |
17 |
||
18 |
$ isabelle build_polyml -m32 -s sha1 src |
|
19 |
$ isabelle build_polyml -m64 -s sha1 src |
|
20 |
||
64544
d23b7c9b9dd4
updated Poly/ML repository test version (08-Dec-2016);
wenzelm
parents:
62281
diff
changeset
|
21 |
* Windows (Cygwin shell) |
d23b7c9b9dd4
updated Poly/ML repository test version (08-Dec-2016);
wenzelm
parents:
62281
diff
changeset
|
22 |
|
67593 | 23 |
$ isabelle build_polyml -M /cygdrive/c/msys64 -m32 -s sha1 src |
24 |
$ isabelle build_polyml -M /cygdrive/c/msys64 -m64 -s sha1 src |
|
41331 | 25 |
|
67589 | 26 |
|
27 |
Building libgmp on Mac OS X |
|
28 |
=========================== |
|
29 |
||
67593 | 30 |
The build_polyml invocations above implicitly use the GNU Multiple Precision |
31 |
Arithmetic Library (libgmp), but that is not available on Mac OS X by default. |
|
32 |
Appending "--without-gmp" to the command-line omits this library. Building |
|
67595 | 33 |
libgmp properly from sources works as follows (library headers and binaries |
34 |
will be placed in /usr/local). |
|
67589 | 35 |
|
36 |
* Download: |
|
37 |
||
38 |
$ curl https://gmplib.org/download/gmp/gmp-6.1.2.tar.xz | xz -dc | tar xf - |
|
39 |
$ cd gmp-6.1.2 |
|
67583 | 40 |
|
69704 | 41 |
* build: |
67589 | 42 |
|
43 |
$ make distclean |
|
44 |
$ ./configure --enable-cxx --build=core2-apple-darwin"$(uname -r)" |
|
45 |
$ make && make check |
|
46 |
$ sudo make install |
|
67583 | 47 |
|
41331 | 48 |
|
57689
e189ba8a64b9
updated to polyml-5.5.2-1 which addresses two hard crashes;
wenzelm
parents:
56958
diff
changeset
|
49 |
Makarius |
71160
625df1eb7873
updated to polyml-5.8.1-20191113 test version (Poly/ML 055f20cdc326);
wenzelm
parents:
71118
diff
changeset
|
50 |
24-Nov-2019 |