2016-10-16 09:24:41 +00:00
|
|
|
-*- org -*-
|
|
|
|
Building and Installing Mes
|
|
|
|
|
|
|
|
* Get it
|
|
|
|
|
|
|
|
git clone https://gitlab.com/janneke/mes
|
|
|
|
|
|
|
|
* Prerequisites
|
2017-04-02 15:01:29 +00:00
|
|
|
** Guix
|
2016-10-16 09:24:41 +00:00
|
|
|
|
2017-04-02 15:01:29 +00:00
|
|
|
guix environment -l guix.scm #64 bit + 32bit
|
|
|
|
guix environment --system=i686-linux -l guix.scm #32 bit only
|
|
|
|
|
|
|
|
** Other GNU/Linux
|
2017-05-07 08:04:32 +00:00
|
|
|
*** Nyacc, 0.78.0 is known to work.
|
|
|
|
Matt Wette's C99 LALR parser.
|
|
|
|
|
2017-04-02 15:01:29 +00:00
|
|
|
*** A C compiler, GNU Gcc 4.9.3 is known to work.
|
2016-10-16 09:24:41 +00:00
|
|
|
The idea is to drop this requirement, of course.
|
|
|
|
|
2017-04-02 15:01:29 +00:00
|
|
|
*** Guile, version 2.0.12 or is know to work.
|
2016-10-16 09:24:41 +00:00
|
|
|
Guile is not strictly necessary but it is used by the configure script
|
|
|
|
and in development.
|
|
|
|
|
2017-04-02 15:01:29 +00:00
|
|
|
*** GNU Make, version 4.0 is know to work.
|
2016-10-16 09:24:41 +00:00
|
|
|
Not strictly necessary.
|
|
|
|
|
2017-04-02 15:01:29 +00:00
|
|
|
*** /bin/sh, GNU Bash 4.3 is known to work.
|
2016-10-16 09:24:41 +00:00
|
|
|
Let's just say for now that it gets awkward without a shell.
|
|
|
|
|
|
|
|
*** Development (but see [[./guix.scm]])
|
|
|
|
|
2017-04-02 15:01:29 +00:00
|
|
|
*** GNU coreutils
|
|
|
|
*** sed, GNU sed 4.2 is known to work.
|
|
|
|
*** git, 2.10 is known to work.
|
|
|
|
*** Perl, 5.22 is known to work.
|
2016-10-16 09:24:41 +00:00
|
|
|
|
|
|
|
* Build it
|
|
|
|
|
|
|
|
./configure
|
|
|
|
make all
|
|
|
|
|
|
|
|
* Check it
|
|
|
|
|
|
|
|
make check
|
|
|
|
|
|
|
|
* Install it
|
|
|
|
|
|
|
|
make install
|
2016-12-10 21:47:13 +00:00
|
|
|
* Guix it...
|
|
|
|
|
|
|
|
guix package -f guix.scm
|