f68b169feb
* ChangeLog: Add copyright header. * build-aux/GNUmakefile.in (generate-ChangeLog): Append it as copyright footer. * BOOTSTRAP: Add copyright header. * scaffold/boot/2f-define-second-lambda.scm: Likewise. * scaffold/boot/39-global-define-override.scm: Likewise. * scaffold/boot/3a-global-define-lambda-override.scm: Likewise. * scaffold/boot/4f-string-split.scm: Likewise. * scaffold/boot/numbers.scm: Likewise. * scaffold/gc.scm: Likewise. * scaffold/b-0.mes: Remove. * doc/GNU-EVAL-APPLY: Remove. * doc/announce/README: New file. * doc/announce/ANNOUNCE: Move from doc/ANNOUNCE. * doc/announce/ANNOUNCE-0.10: Likewise. * doc/announce/ANNOUNCE-0.11: Likewise. * doc/announce/ANNOUNCE-0.12: Likewise. * doc/announce/ANNOUNCE-0.13: Likewise. * doc/announce/ANNOUNCE-0.14: Likewise. * doc/announce/ANNOUNCE-0.15: Likewise. * doc/announce/ANNOUNCE-0.16: Likewise. * doc/announce/ANNOUNCE-0.3: Likewise. * doc/announce/ANNOUNCE-0.4: Likewise. * doc/announce/ANNOUNCE-0.5: Likewise. * doc/announce/ANNOUNCE-0.6: Likewise. * doc/announce/ANNOUNCE-0.7: Likewise. * doc/announce/ANNOUNCE-0.8: Likewise. * doc/announce/ANNOUNCE-0.9: Likewise. * doc/announce/ANNOUNCE-2: Likewise. * doc/announce/UPDATE-0.13: Likewise. * doc/fosdem/README: New file. * doc/fosdem/fosdem.org: Add legalese. * doc/fosdem/fosdem.pdf: Regenerate. * doc/images/README: New file. * mes/module/mes/psyntax.pp.header: New file. * mes/module/mes/psyntax.pp: Add it to generated file.
71 lines
2.7 KiB
Groff
71 lines
2.7 KiB
Groff
Subject: Mes 0.8 released
|
|
|
|
I am pleased to announce the release of Mes 0.8, representing 34
|
|
commits over 3 weeks. Mescc now produces object files in the hex2
|
|
ascii output format compatible with the stage0 linker.
|
|
|
|
Special thanks to Jeremiah Orians for support with MESCC_Tools and
|
|
hex2, more goodness to follow soon!
|
|
|
|
* About
|
|
|
|
Mes aims to create full source bootstrapping for GuixSD: an
|
|
entirely source-based bootstrap path. The target is to [have
|
|
GuixSD] boostrap from a minimal, easily inspectable binary --that
|
|
should be readable as source-- into something close to R6RS
|
|
Scheme.
|
|
|
|
It currently consists of a mutual self-hosting [close to Guile-]
|
|
Scheme interpreter prototype in C and a Nyacc-based C compiler in
|
|
[Guile] Scheme.
|
|
|
|
The Scheme interpreter prototype (mes.c) has a Garbage Collector,
|
|
a library of loadable Scheme modules-- notably Dominique Boucher's
|
|
LALR[1], Pre-R6RS portable syntax-case[2] with R7RS ellipsis, Matt
|
|
Wette's Nyacc[3] Guile's PEG[4] --and test suite just barely
|
|
enough to support a simple REPL (repl.mes) and simple C-compiler
|
|
(mescc.mes) that can produce the second initial ELF binary from
|
|
binary from mes.c, in only about 2h30'.
|
|
|
|
Mes was inspired by The Maxwell Equations of Software: LISP-1.5[5]
|
|
-- John McCarthy page 13, GNU Guix's[6] source/binary packaging
|
|
transparency and Jeremiah Orians's stage0[7] bootstrap project.
|
|
|
|
* Download
|
|
|
|
git clone https://gitlab.com/janneke/mes
|
|
|
|
wget https://gitlab.com/janneke/mes/repository/archive.tar.gz?ref=v0.8 -O mes-0.8.tar.gz
|
|
|
|
Mes runs from the source tree and can also be built, packaged and
|
|
installed in Guix[SD] by the usual
|
|
|
|
guix package -f guix.scm
|
|
|
|
* Changes in 0.8 since 0.7
|
|
** Mescc
|
|
*** Mescc now depends on the hex2 linker from MESCC_Tools[9].
|
|
Direct ELF output support has been removed.
|
|
ELF symbol and string table creation has been removed.
|
|
*** Mescc now has experimental annotation support for hex2.
|
|
*** Mescc has experimental annotation support for hex2.
|
|
*** Mescc has been simplified by leveraging use labels in hex2 output.
|
|
*** Mescc now supports continue in loops.
|
|
*** Mescc now compiles to hex2 object files.
|
|
** Language
|
|
*** 1 new function
|
|
list-index.
|
|
|
|
Greetings,
|
|
janneke
|
|
|
|
[1] https://github.com/schemeway/lalr-scm
|
|
[2] https://www.cs.indiana.edu/chezscheme/syntax-case/old-psyntax.html
|
|
[3] https://www.nongnu.org/nyacc/
|
|
[4] https://www.gnu.org/software/guile/docs/master/guile.html/PEG-Parsing.html
|
|
[5] http://www.softwarepreservation.org/projects/LISP/book/LISP%201.5%20Programmers%20Manual.pdf
|
|
[6] https://www.gnu.org/software/guix/
|
|
[7] https://github.com/oriansj/stage0
|
|
[8] https://gitlab.com/janneke/tinycc
|
|
[9] https://github.com/oriansj/MESCC_Tools
|