2016-10-12 21:40:11 +00:00
|
|
|
#! /bin/sh
|
|
|
|
# -*-scheme-*-
|
2016-12-07 19:26:41 +00:00
|
|
|
prefix=module/
|
2016-12-31 08:03:07 +00:00
|
|
|
echo '()' | cat $prefix/mes/base-0.mes $0 /dev/stdin | $(dirname $0)/mes $MES_FLAGS "$@"
|
|
|
|
#paredit:||
|
2016-10-12 21:40:11 +00:00
|
|
|
chmod +x a.out
|
|
|
|
exit $?
|
|
|
|
!#
|
|
|
|
|
|
|
|
;;; 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
|
|
|
|
(mes-use-module (mes guile))
|
|
|
|
(mes-use-module (language c99 compiler))
|
|
|
|
|
|
|
|
(define (main arguments)
|
|
|
|
(let* ((files (cdr arguments))
|
|
|
|
(file (if (null? files) "doc/examples/main.c"
|
|
|
|
(car files))))
|
|
|
|
(with-input-from-file file
|
|
|
|
compile)))
|
2016-10-16 06:00:04 +00:00
|
|
|
|
2017-01-03 22:48:12 +00:00
|
|
|
(main (command-line))
|
2016-10-12 21:40:11 +00:00
|
|
|
()
|