78b3c85f15
* configure: Cater for ARM. * configure.sh: Likewise * build-aux/GNUmakefile.in: Likewise. * build-aux/bootstrap.sh.in: Likewise. * module/mescc.scm (parse-opts): Likewise. * src/mes.c (mes_environment): Likewise. * build-aux/build.sh.in: Likewise. * build-aux/config.sh Likewise. * build-aux/install.sh.in: Likewise. * module/mes/guile.scm: Likewise. * scripts/mescc.scm.in: Likewise. * module/mescc/mescc.scm (arch-get): New function. (arch-get-info): New function. (arch-get-define): New function. (arch-get-m1-options): New function. (arch-get-Architecture): New function. (mescc:preprocess c->info, E->info, M1->hex2, hex2->elf, M1->blood-elf, arch-find): Use them.
47 lines
1.5 KiB
Scheme
47 lines
1.5 KiB
Scheme
#! @GUILE@ \
|
|
--no-auto-compile -e main -L @guile_site_dir@ -C @guile_site_ccache_dir@ -s
|
|
!#
|
|
;;; GNU Mes --- Maxwell Equations of Software
|
|
;;; Copyright © 2016,2017,2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
|
;;;
|
|
;;; This file is part of GNU Mes.
|
|
;;;
|
|
;;; GNU 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.
|
|
;;;
|
|
;;; GNU 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 GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
(cond-expand
|
|
(mes)
|
|
(guile
|
|
(define %arch (car (string-split %host-type #\-)))))
|
|
|
|
(setenv "%prefix" (or (getenv "MES_PREFIX")
|
|
(if (string-prefix? "@prefix" "@prefix@")
|
|
""
|
|
"@prefix@")))
|
|
|
|
(setenv "%version" (if (string-prefix? "@VERSION" "@VERSION@") "git"
|
|
"@VERSION@"))
|
|
|
|
(setenv "%arch" (if (string-prefix? "@mes_cpu" "@mes_cpu@") %arch
|
|
"@mes_cpu@"))
|
|
|
|
(cond-expand
|
|
(mes
|
|
(mes-use-module (mescc))
|
|
(mescc:main (command-line)))
|
|
(guile
|
|
(use-modules (mescc))))
|
|
|
|
(define (main args)
|
|
(mescc:main args))
|