2016-10-12 21:40:11 +00:00
|
|
|
#! /bin/sh
|
|
|
|
# -*-scheme-*-
|
2017-03-26 20:09:24 +00:00
|
|
|
MES=${MES-$(dirname $0)/mes}
|
2017-04-02 16:50:07 +00:00
|
|
|
moduledir=module/
|
2017-04-04 07:53:05 +00:00
|
|
|
echo '()' | cat $moduledir/mes/base-0.mes $0 /dev/stdin | $MES $MES_FLAGS -- "$@"
|
2016-12-31 08:03:07 +00:00
|
|
|
#paredit:||
|
2017-04-02 15:01:22 +00:00
|
|
|
r=$?
|
|
|
|
([ -f a.out ] && chmod +x a.out)
|
|
|
|
exit $r
|
2016-10-12 21:40:11 +00:00
|
|
|
!#
|
|
|
|
|
|
|
|
;;; Mes --- Maxwell Equations of Software
|
2017-01-03 22:48:12 +00:00
|
|
|
;;; Copyright © 2016,2017 Jan Nieuwenhuizen <janneke@gnu.org>
|
2016-10-12 21:40:11 +00:00
|
|
|
;;;
|
2016-12-18 14:44:09 +00:00
|
|
|
;;; This file is part of Mes.
|
2016-10-12 21:40:11 +00:00
|
|
|
;;;
|
|
|
|
;;; Mes is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; Mes is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;;; mescc.mes is a proof-of-concept simplistic C compiler and linker
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2016-12-31 08:03:07 +00:00
|
|
|
;;LALR
|
|
|
|
;;(mes-use-module (language c compiler))
|
|
|
|
;;Nyacc
|
2017-04-04 07:53:05 +00:00
|
|
|
|
|
|
|
(let* ((files (cddr (command-line)))
|
|
|
|
(file (if (pair? files) (car files))))
|
|
|
|
(cond ((equal? file "--help")
|
|
|
|
(format (current-error-port) "Usage: mescc.mes [--help|--version|FILE] > a.out\n")
|
|
|
|
(exit 0))
|
|
|
|
((equal? file "--version")
|
|
|
|
(format (current-error-port) "mescc.mes (mes) ~a\n" %version)
|
|
|
|
(exit 0))))
|
|
|
|
|
2016-12-31 08:03:07 +00:00
|
|
|
(mes-use-module (mes guile))
|
|
|
|
(mes-use-module (language c99 compiler))
|
|
|
|
|
2017-04-12 19:27:59 +00:00
|
|
|
(format (current-error-port) "mescc.mes...\n")
|
|
|
|
|
2017-04-02 16:50:07 +00:00
|
|
|
(define %datadir (if (string-prefix? "@DATADIR" "@DATADIR@") "" "@DATADIR@"))
|
|
|
|
(define %docdir (if (string-prefix? "@DOCDIR" "@DOCDIR@") "doc/" "@DOCDIR@"))
|
|
|
|
(define %moduledir "module/")
|
|
|
|
(define %prefix (if (string-prefix? "@PREFIX" "@PREFIX@") "" "@PREFIX@"))
|
|
|
|
(define %version (if (string-prefix? "@VERSION" "@VERSION@") "git" "@VERSION@"))
|
|
|
|
|
2016-12-31 08:03:07 +00:00
|
|
|
(define (main arguments)
|
2017-04-04 07:53:05 +00:00
|
|
|
(let* ((mfiles (cddr arguments))
|
|
|
|
(mfiles (if (or (null? mfiles) (not (equal? (car mfiles) "--"))) mfiles
|
|
|
|
(cdr mfiles)))
|
|
|
|
(mfile (if (null? mfiles) (string-append %docdir "examples/main.c")
|
|
|
|
(car mfiles))))
|
mescc: Parse mlibc early, show progress.
* module/mes/libc.mes (_start, strlen, getchar, assert_fail, ungetc,
putchar, fputc, eputs, fputs, puts, strcmp, itoa, isdigit, atoi,
malloc, realloc, strncmp, c:getenv): Change to function, add
progress. Update callers.
* module/language/c99/compiler.mes (c99-input->info): Compile libc separately.
* guile/mescc.scm: Update progress.
* scripts/mescc.mes: Update progress.
2017-04-24 17:09:54 +00:00
|
|
|
(format (current-error-port) "input: ~a\n" mfile)
|
2017-04-04 07:53:05 +00:00
|
|
|
(with-input-from-file mfile
|
2017-04-12 19:27:59 +00:00
|
|
|
c99-input->elf)))
|
2016-10-16 06:00:04 +00:00
|
|
|
|
mescc: Parse mlibc early, show progress.
* module/mes/libc.mes (_start, strlen, getchar, assert_fail, ungetc,
putchar, fputc, eputs, fputs, puts, strcmp, itoa, isdigit, atoi,
malloc, realloc, strncmp, c:getenv): Change to function, add
progress. Update callers.
* module/language/c99/compiler.mes (c99-input->info): Compile libc separately.
* guile/mescc.scm: Update progress.
* scripts/mescc.mes: Update progress.
2017-04-24 17:09:54 +00:00
|
|
|
(format (current-error-port) "compiler loaded\n")
|
|
|
|
(format (current-error-port) "calling ~s\n" (cons 'main (command-line)))
|
2017-01-03 22:48:12 +00:00
|
|
|
(main (command-line))
|
2016-10-12 21:40:11 +00:00
|
|
|
()
|