2018-07-21 16:28:47 +00:00
|
|
|
#! @BASH@
|
2018-11-25 12:21:03 +00:00
|
|
|
|
|
|
|
# GNU Mes --- Maxwell Equations of Software
|
2023-05-03 12:47:09 +00:00
|
|
|
# Copyright © 2018,2019,2023 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2018-11-25 12:21:03 +00:00
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
2018-07-21 22:43:39 +00:00
|
|
|
if [ "$V" = 2 ]; then
|
2018-05-25 06:05:02 +00:00
|
|
|
set -x
|
|
|
|
fi
|
2018-11-25 12:21:03 +00:00
|
|
|
|
2019-09-06 21:24:23 +00:00
|
|
|
MES_ARENA=${MES_ARENA-20000000}
|
2018-11-11 15:25:36 +00:00
|
|
|
export MES_ARENA
|
2018-11-25 12:21:03 +00:00
|
|
|
|
2019-09-06 21:24:23 +00:00
|
|
|
MES_MAX_ARENA=${MES_MAX_ARENA-${MES_ARENA}}
|
|
|
|
export MES_MAX_ARENA
|
|
|
|
|
2020-10-06 13:58:01 +00:00
|
|
|
MES_STACK=${MES_STACK-6000000}
|
2018-11-11 15:25:36 +00:00
|
|
|
export MES_STACK
|
2018-11-25 12:21:03 +00:00
|
|
|
|
2019-06-08 13:36:22 +00:00
|
|
|
MES_PREFIX=${MES_PREFIX-@prefix@}
|
2018-05-29 18:07:46 +00:00
|
|
|
export MES_PREFIX
|
2018-04-27 21:47:31 +00:00
|
|
|
|
2019-05-15 21:26:52 +00:00
|
|
|
GUILE_LOAD_PATH=@guile_site_dir@${GUILE_LOAD_PATH+:}${GUILE_LOAD_PATH}
|
|
|
|
export GUILE_LOAD_PATH
|
|
|
|
|
2020-08-30 13:00:26 +00:00
|
|
|
if test -n "$MES_UNINSTALLED"; then
|
|
|
|
includedir=${includedir-${abs_top_srcdir}/include}
|
|
|
|
libdir=${libdir-${abs_top_builddir}/lib}
|
|
|
|
fi
|
|
|
|
|
2020-12-15 16:40:46 +00:00
|
|
|
prefix=@prefix@
|
2019-05-15 21:26:52 +00:00
|
|
|
MES=${MES-@prefix@/bin/mes}
|
2019-11-24 10:14:14 +00:00
|
|
|
bindir=${bindir-@bindir@}
|
|
|
|
includedir=${includedir-@includedir@}
|
|
|
|
export includedir
|
|
|
|
libdir=${libdir-@libdir@}
|
|
|
|
export libdir
|
2019-05-15 21:26:52 +00:00
|
|
|
|
|
|
|
if [ ! -f $bindir/mescc.scm ]; then
|
|
|
|
bindir=$(dirname $0)
|
|
|
|
fi
|
2017-05-17 11:56:25 +00:00
|
|
|
|
2019-05-29 14:45:28 +00:00
|
|
|
sep=
|
|
|
|
if [ "$(basename ${SCHEME-$MES})" = "mes" ]; then
|
|
|
|
sep=--
|
|
|
|
fi
|
|
|
|
|
2018-11-24 20:07:31 +00:00
|
|
|
${SCHEME-$MES} \
|
2019-05-29 14:45:28 +00:00
|
|
|
--no-auto-compile\
|
|
|
|
-e main\
|
|
|
|
-L @guile_site_dir@\
|
|
|
|
-C @guile_site_ccache_dir@\
|
|
|
|
$bindir/mescc.scm\
|
|
|
|
$sep\
|
|
|
|
"$@"
|