f1778a7a0c
* .dir-locals.el: Add copyright header. * AUTHORS: Likewise. * HACKING: Likewise. * INSTALL: Likewise. * README: Likewise. * build-aux/export.make: Likewise. * build-aux/setup-mes.sh: Likewise. * configure.sh: Likewise. * install.sh: Likewise. * scaffold/tests/90-goto-var.c: Likewise. * scaffold/tests/91-goto-array.c: Likewise. * tests/read.test: Likewise. * uninstall.sh: Likewise. * doc/fosdem/beamercolorthemeX.sty: * doc/fosdem/beamerthemeX.sty: * doc/fosdem/html.sty: Remove. * doc/fosdem/README: New file. * doc/images/README: New file.
71 lines
2 KiB
Plaintext
71 lines
2 KiB
Plaintext
-*- org -*-
|
|
#+TITLE: Building and Installing GNU Mes
|
|
|
|
Copyright © 2016, 2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
|
|
|
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
|
|
similar way.
|
|
|
|
* Get it
|
|
git clone [[git://git.savannah.gnu.org][git://git.savannah.gnu.org/mes.git]]
|
|
|
|
* Regular build
|
|
** Prerequisites
|
|
*** Guix
|
|
guix environment -l .guix.scm #64 bit + 32bit
|
|
guix environment --system=i686-linux -l .guix.scm #32 bit only
|
|
|
|
*** Other GNU/Linux
|
|
- [[https://github.com/oriansj/mescc-tools][mescc-tools]], 0.5 is known to work.
|
|
- [[https://savannah.gnu.org/projects/nyacc][Nyacc]], [[https://gitlab.com/janneke/nyacc][patched Nyacc]] 0.80.42 is known to work.
|
|
- 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.
|
|
- git, 2.10 is known to work.
|
|
- Perl, 5.22 is known to work.
|
|
|
|
** Build it
|
|
./configure
|
|
make
|
|
|
|
** Check it
|
|
make check
|
|
|
|
** Install it
|
|
make install
|
|
|
|
* Guix it
|
|
guix package -f .guix.scm
|
|
|
|
* Bootstrap build
|
|
|
|
The bootstrap build is being developed in GuixSD, see
|
|
https://gitlab.com/janneke/guix/blob/wip-bootstrap/gnu/packages/mes.scm
|
|
|
|
** Prerequisites
|
|
- [[https://github.com/oriansj/mescc-tools][mescc-tools]], 0.5 is known to work.
|
|
- [[https://savannah.gnu.org/projects/nyacc][Nyacc]], [[https://gitlab.com/janneke/nyacc][patched Nyacc]] 0.80.42 is known to work.
|
|
- [[https://gitlab.com/janneke/mes-seed][mes-seed]], 0.16 is known to work.
|
|
|
|
** Build it
|
|
<setup environment, e.g. prefix, MES_SEED>
|
|
|
|
./build.sh
|
|
|
|
** Check it
|
|
|
|
./check.sh
|
|
|
|
** Install it
|
|
|
|
./install.sh
|