2016-10-16 09:24:41 +00:00
|
|
|
-*- org -*-
|
2018-07-23 17:10:34 +00:00
|
|
|
#+TITLE: Building and Installing GNU Mes
|
2016-10-16 09:24:41 +00:00
|
|
|
|
2019-11-04 18:59:13 +00:00
|
|
|
Copyright © 2016,2017,2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2018-06-24 11:13:13 +00:00
|
|
|
|
2018-07-23 17:10:34 +00:00
|
|
|
Copying and distribution of this file, with or without modification,
|
|
|
|
are permitted in any medium without royalty provided the copyright
|
|
|
|
notice and this notice are preserved.
|
|
|
|
|
|
|
|
Mes can be built in two modes: as a regulare package build or as a
|
|
|
|
bootstrap package.
|
|
|
|
|
|
|
|
After bootstrapping Mes it can be used to bootstrap TinyCC (tcc) in a
|
2018-06-24 11:13:13 +00:00
|
|
|
similar way.
|
2016-10-16 09:24:41 +00:00
|
|
|
|
2018-06-24 11:13:13 +00:00
|
|
|
* Get it
|
2018-07-22 12:24:36 +00:00
|
|
|
git clone [[git://git.savannah.gnu.org][git://git.savannah.gnu.org/mes.git]]
|
2016-10-16 09:24:41 +00:00
|
|
|
|
2018-06-24 11:13:13 +00:00
|
|
|
* Regular build
|
|
|
|
** Prerequisites
|
2017-06-08 18:39:24 +00:00
|
|
|
*** Guix
|
2019-11-04 18:59:13 +00:00
|
|
|
#+BEGIN_SRC bash
|
|
|
|
guix environment -l guix.scm #64 bit + 32bit
|
|
|
|
guix environment --system=i686-linux -l guix.scm #32 bit only
|
|
|
|
#+END_SRC
|
2017-04-02 15:01:29 +00:00
|
|
|
|
2017-06-08 18:39:24 +00:00
|
|
|
*** Other GNU/Linux
|
2019-11-04 18:59:13 +00:00
|
|
|
- [[https://savannah.gnu.org/projects/mescc-tools/][mescc-tools]], 0.6.1 is known to work.
|
|
|
|
- [[https://savannah.gnu.org/projects/nyacc][Nyacc]], 0.93.0 is known to work.
|
2018-06-24 11:13:13 +00:00
|
|
|
- GNU Gcc, 4.9.3 is known to work.
|
|
|
|
- GNU Guile, version 2.0.12 or is know to work.
|
|
|
|
- SH, /bin/sh, GNU Bash 4.3 is known to work.
|
|
|
|
- GNU coreutils
|
|
|
|
- sed, GNU sed 4.2 is known to work.
|
|
|
|
- Perl, 5.22 is known to work.
|
2016-10-16 09:24:41 +00:00
|
|
|
|
2018-06-24 11:13:13 +00:00
|
|
|
** Build it
|
2019-11-04 18:59:13 +00:00
|
|
|
|
|
|
|
#+BEGIN_SRC bash
|
2018-06-24 11:13:13 +00:00
|
|
|
./configure
|
|
|
|
make
|
2019-11-04 18:59:13 +00:00
|
|
|
#+END_SRC
|
2016-10-16 09:24:41 +00:00
|
|
|
|
2018-06-24 11:13:13 +00:00
|
|
|
** Check it
|
2019-11-04 18:59:13 +00:00
|
|
|
|
|
|
|
#+BEGIN_SRC bash
|
2018-06-24 11:13:13 +00:00
|
|
|
make check
|
2019-11-04 18:59:13 +00:00
|
|
|
#+END_SRC
|
2016-10-16 09:24:41 +00:00
|
|
|
|
2018-06-24 11:13:13 +00:00
|
|
|
** Install it
|
2019-11-04 18:59:13 +00:00
|
|
|
|
|
|
|
#+BEGIN_SRC bash
|
2018-06-24 11:13:13 +00:00
|
|
|
make install
|
2019-11-04 18:59:13 +00:00
|
|
|
#+END_SRC
|
2016-10-16 09:24:41 +00:00
|
|
|
|
2018-06-24 11:13:13 +00:00
|
|
|
* Guix it
|
2019-11-04 18:59:13 +00:00
|
|
|
|
|
|
|
#+BEGIN_SRC bash
|
|
|
|
guix build -f guix.scm
|
|
|
|
#+END_SRC
|
2016-10-16 09:24:41 +00:00
|
|
|
|
2018-06-24 11:13:13 +00:00
|
|
|
* Bootstrap build
|
2017-05-22 21:35:39 +00:00
|
|
|
|
2019-11-04 18:59:13 +00:00
|
|
|
The bootstrap build is part of Guix, see
|
|
|
|
https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/commencement.scm
|
2016-10-16 09:24:41 +00:00
|
|
|
|
2018-06-24 11:13:13 +00:00
|
|
|
** Prerequisites
|
2019-11-04 18:59:13 +00:00
|
|
|
- [[https://savannah.gnu.org/projects/mescc-tools/][mescc-tools]], 0.6.1 is known to work.
|
|
|
|
- [[https://savannah.gnu.org/projects/nyacc][Nyacc]], 0.93.0 is known to work.
|
2016-10-16 09:24:41 +00:00
|
|
|
|
2018-06-24 11:13:13 +00:00
|
|
|
** Build it
|
2019-11-04 18:59:13 +00:00
|
|
|
|
|
|
|
#+BEGIN_SRC bash
|
|
|
|
sh configure.sh [--prefix=<prefix>]
|
|
|
|
sh bootstrap.sh
|
|
|
|
#+END_SRC
|
2016-12-10 21:47:13 +00:00
|
|
|
|
2018-06-24 11:13:13 +00:00
|
|
|
** Check it
|
|
|
|
|
2019-11-04 18:59:13 +00:00
|
|
|
#+BEGIN_SRC bash
|
|
|
|
sh check.sh
|
|
|
|
#+END_SRC
|
2018-06-24 11:13:13 +00:00
|
|
|
|
|
|
|
** Install it
|
|
|
|
|
2019-11-04 18:59:13 +00:00
|
|
|
#+BEGIN_SRC bash
|
|
|
|
sh install.sh
|
|
|
|
#+END_SRC
|