2018-11-06 19:29:35 +00:00
|
|
|
#! /bin/sh
|
2017-11-24 18:02:58 +00:00
|
|
|
|
2018-07-22 12:24:36 +00:00
|
|
|
# GNU Mes --- Maxwell Equations of Software
|
2020-10-18 21:15:11 +00:00
|
|
|
# Copyright © 2018,2019,2022 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2017-12-02 07:48:34 +00:00
|
|
|
#
|
2018-07-22 12:24:36 +00:00
|
|
|
# This file is part of GNU Mes.
|
2017-12-02 07:48:34 +00:00
|
|
|
#
|
2018-07-22 12:24:36 +00:00
|
|
|
# GNU Mes is free software; you can redistribute it and/or modify it
|
2017-12-02 07:48:34 +00:00
|
|
|
# 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.
|
|
|
|
#
|
2018-07-22 12:24:36 +00:00
|
|
|
# GNU Mes is distributed in the hope that it will be useful, but
|
2017-12-02 07:48:34 +00:00
|
|
|
# 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
|
2018-07-22 12:24:36 +00:00
|
|
|
# along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2017-12-02 07:48:34 +00:00
|
|
|
|
2018-11-06 19:29:35 +00:00
|
|
|
set -e
|
2018-07-25 06:14:13 +00:00
|
|
|
|
2019-06-08 13:36:22 +00:00
|
|
|
if test "$1" = "help"; then
|
|
|
|
cat <<EOF
|
|
|
|
Run:
|
|
|
|
./build.sh to build mes
|
|
|
|
./check.sh to check mes
|
|
|
|
./install.sh to install mes
|
|
|
|
EOF
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$V" = 2; then
|
|
|
|
set -x
|
|
|
|
fi
|
|
|
|
|
|
|
|
set -u
|
|
|
|
. ./config.sh
|
2019-12-05 07:30:30 +00:00
|
|
|
. ${srcdest}build-aux/cflags.sh
|
2019-06-08 13:36:22 +00:00
|
|
|
|
|
|
|
if $courageous; then
|
|
|
|
echo "Applying courage"
|
|
|
|
set +e
|
|
|
|
fi
|
|
|
|
|
2019-11-03 21:15:11 +00:00
|
|
|
if test "$compiler" != bootstrap; then
|
|
|
|
${SHELL} ${srcdest}build-aux/build-scaffold.sh
|
|
|
|
fi
|
2017-12-02 07:48:34 +00:00
|
|
|
|
2019-06-08 13:36:22 +00:00
|
|
|
if test -n "$GUILE" -a "$GUILE" != true; then
|
2019-06-25 19:40:43 +00:00
|
|
|
${SHELL} ${srcdest}build-aux/build-guile.sh
|
2018-04-29 16:38:57 +00:00
|
|
|
fi
|
2018-01-01 15:55:07 +00:00
|
|
|
|
2019-09-20 17:40:37 +00:00
|
|
|
(
|
|
|
|
mkdir -p gcc-lib
|
|
|
|
cp config.sh gcc-lib
|
|
|
|
cd gcc-lib
|
|
|
|
if test -z "$srcdest"; then
|
|
|
|
srcdest=../
|
|
|
|
srcdir=../
|
|
|
|
fi
|
|
|
|
if test $compiler = gcc; then
|
2019-12-05 09:02:14 +00:00
|
|
|
AM_LDFLAGS="$AM_LDFLAGS
|
|
|
|
-L gcc-lib
|
|
|
|
"
|
2019-12-02 17:26:08 +00:00
|
|
|
AM_CPPFLAGS="
|
2019-06-08 13:36:22 +00:00
|
|
|
-D HAVE_CONFIG_H=1
|
2019-03-10 20:52:05 +00:00
|
|
|
-I ${srcdest}lib
|
2019-06-08 13:36:22 +00:00
|
|
|
-I ${srcdest}include
|
lib: stat: Use SYS_stat64 for 32bit platforms.
This fixes <https://debbugs.gnu.org/41264>.
* include/linux/arm/syscall.h (SYS_stat64, SYS_lstat64,
SYS_fstat64)[__SIZEOF_LONG_LONG__ == 8]:
New defines.
(SYS_stat, SYS_lstat, SYS_fstat)[__SIZEOF_LONG_LONG__ == 8]: Redefine them.
* include/linux/x86/syscall.h (SYS_stat64, SYS_lstat64,
SYS_fstat64)[__SIZEOF_LONG_LONG__ == 8]:
New defines.
(SYS_stat, SYS_lstat, SYS_fstat)[__SIZEOF_LONG_LONG__ == 8]: Redefine them.
* include/sys/stat.h (struct stat): Move definition to...
* include/linux/arm/kernel-stat.h,
include/linux/m2/kernel-stat.h,
include/linux/x86/kernel-stat.h,
include/linux/x86_64/kernel-stat.h: These new files.
* include/gnu/x86/kernel-stat.h: New file.
* configure (main): Copy <srcdest>include/<kernel>/<arch>/*.h to
include/.
* configure.sh: Likewise.
* .gitignore: Ignore them. Add copyright header.
* build-aux/GNUmakefile.in (X86_ARCH_HEADERS, ARCH_HEADERS): New
variables.
(build): Use them.
(include/arch/%.h, arch-dir): New targets.
* build-aux/bootstrap.sh.in (AM_CPPFLAGS): Replace
<srcdest>include/<kernel>/<cpu> with built ../include.
* build-aux/build.sh.in (AM_CPPFLAGS): Likewise.
* build-aux/install.sh.in: Also install built include.
* include/m2/types.h: New file.
* kaem.run: Use it.
* simple.sh: Copy kernel-stat.h, syscall.h for kernel/cpu to
include/arch.
2022-10-29 11:17:58 +00:00
|
|
|
-I ../include
|
2019-06-08 13:36:22 +00:00
|
|
|
"
|
2019-03-10 20:52:05 +00:00
|
|
|
if test $mes_kernel = gnu; then
|
|
|
|
AM_CPPFLAGS="$AM_CPPFLAGS
|
|
|
|
-I /usr/include
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2019-06-25 19:40:43 +00:00
|
|
|
${SHELL} ${srcdest}build-aux/build-lib.sh
|
2019-06-08 13:36:22 +00:00
|
|
|
cp crt1.o ..
|
2019-09-20 17:40:37 +00:00
|
|
|
fi
|
|
|
|
compiler=gcc ${SHELL} ${srcdest}build-aux/build-source-lib.sh
|
|
|
|
)
|
2019-06-08 13:36:22 +00:00
|
|
|
|
2019-11-03 21:15:11 +00:00
|
|
|
|
2019-06-08 13:36:22 +00:00
|
|
|
(
|
|
|
|
if test $compiler = gcc; then
|
2019-12-02 17:26:08 +00:00
|
|
|
AM_LDFLAGS="$AM_LDFLAGS
|
2019-06-08 13:36:22 +00:00
|
|
|
-L gcc-lib
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2019-12-02 17:26:08 +00:00
|
|
|
AM_CPPFLAGS="
|
2019-06-08 13:36:22 +00:00
|
|
|
-D HAVE_CONFIG_H=1
|
2019-03-10 20:52:05 +00:00
|
|
|
-I ${srcdest}lib
|
2019-06-08 13:36:22 +00:00
|
|
|
-I ${srcdest}include
|
lib: stat: Use SYS_stat64 for 32bit platforms.
This fixes <https://debbugs.gnu.org/41264>.
* include/linux/arm/syscall.h (SYS_stat64, SYS_lstat64,
SYS_fstat64)[__SIZEOF_LONG_LONG__ == 8]:
New defines.
(SYS_stat, SYS_lstat, SYS_fstat)[__SIZEOF_LONG_LONG__ == 8]: Redefine them.
* include/linux/x86/syscall.h (SYS_stat64, SYS_lstat64,
SYS_fstat64)[__SIZEOF_LONG_LONG__ == 8]:
New defines.
(SYS_stat, SYS_lstat, SYS_fstat)[__SIZEOF_LONG_LONG__ == 8]: Redefine them.
* include/sys/stat.h (struct stat): Move definition to...
* include/linux/arm/kernel-stat.h,
include/linux/m2/kernel-stat.h,
include/linux/x86/kernel-stat.h,
include/linux/x86_64/kernel-stat.h: These new files.
* include/gnu/x86/kernel-stat.h: New file.
* configure (main): Copy <srcdest>include/<kernel>/<arch>/*.h to
include/.
* configure.sh: Likewise.
* .gitignore: Ignore them. Add copyright header.
* build-aux/GNUmakefile.in (X86_ARCH_HEADERS, ARCH_HEADERS): New
variables.
(build): Use them.
(include/arch/%.h, arch-dir): New targets.
* build-aux/bootstrap.sh.in (AM_CPPFLAGS): Replace
<srcdest>include/<kernel>/<cpu> with built ../include.
* build-aux/build.sh.in (AM_CPPFLAGS): Likewise.
* build-aux/install.sh.in: Also install built include.
* include/m2/types.h: New file.
* kaem.run: Use it.
* simple.sh: Copy kernel-stat.h, syscall.h for kernel/cpu to
include/arch.
2022-10-29 11:17:58 +00:00
|
|
|
-I ../include
|
|
|
|
-I include
|
2019-06-08 13:36:22 +00:00
|
|
|
"
|
2020-10-18 21:15:11 +00:00
|
|
|
if test "$compiler" != bootstrap; then
|
2019-11-03 21:15:11 +00:00
|
|
|
${SHELL} ${srcdest}build-aux/build-mes.sh
|
|
|
|
fi
|
2019-06-08 13:36:22 +00:00
|
|
|
)
|
|
|
|
|
2022-04-30 20:51:42 +00:00
|
|
|
if test -n "$M2_PLANET" && (test "$mes_cpu" == "x86" \
|
|
|
|
|| test "$mes_cpu" == "arm"); then
|
2020-10-18 21:15:11 +00:00
|
|
|
(
|
|
|
|
. ${srcdest}build-aux/trace.sh
|
|
|
|
if [ -z "$V" -o "$V" = 0 ]; then
|
|
|
|
__verbose=
|
|
|
|
else
|
|
|
|
__verbose=--verbose
|
|
|
|
fi
|
|
|
|
trace "KAEM scaffold/main.kaem" kaem --strict $__verbose -f scaffold/main.kaem
|
|
|
|
trace "KAEM scaffold/hello.kaem" kaem --strict $__verbose -f scaffold/hello.kaem
|
|
|
|
trace "KAEM scaffold/argv.kaem" kaem --strict $__verbose -f scaffold/argv.kaem
|
|
|
|
trace "KAEM scaffold/read.kaem" kaem --strict $__verbose -f scaffold/read.kaem
|
|
|
|
trace "KAEM kaem.run" kaem --strict $__verbose
|
|
|
|
)
|
|
|
|
fi
|
|
|
|
|
2019-06-08 13:36:22 +00:00
|
|
|
(
|
|
|
|
mkdir -p mescc-lib
|
|
|
|
cp config.sh mescc-lib
|
|
|
|
cd mescc-lib
|
|
|
|
sed -i s,mes_libc=system,mes_libc=mes, config.sh
|
|
|
|
mkdir -p include/mes
|
2019-12-19 06:13:06 +00:00
|
|
|
cp ../include/mes/config.h include/mes/config.h
|
2019-06-08 13:36:22 +00:00
|
|
|
sed -i 's,#define SYSTEM_LIBC 1,#undef SYSTEM_LIBC,' include/mes/config.h
|
|
|
|
if test -z "$srcdest"; then
|
|
|
|
srcdest=../
|
|
|
|
srcdir=../
|
|
|
|
fi
|
2019-12-19 06:13:06 +00:00
|
|
|
ln -sf ${srcdest}mes .
|
|
|
|
ln -sf ${srcdest}module .
|
|
|
|
ln -sf ${srcdest}src .
|
|
|
|
AM_CPPFLAGS="
|
2019-06-08 13:36:22 +00:00
|
|
|
-D HAVE_CONFIG_H=1
|
2019-03-10 20:52:05 +00:00
|
|
|
-I ${srcdest}lib
|
2019-06-08 13:36:22 +00:00
|
|
|
-I ${srcdest}include
|
lib: stat: Use SYS_stat64 for 32bit platforms.
This fixes <https://debbugs.gnu.org/41264>.
* include/linux/arm/syscall.h (SYS_stat64, SYS_lstat64,
SYS_fstat64)[__SIZEOF_LONG_LONG__ == 8]:
New defines.
(SYS_stat, SYS_lstat, SYS_fstat)[__SIZEOF_LONG_LONG__ == 8]: Redefine them.
* include/linux/x86/syscall.h (SYS_stat64, SYS_lstat64,
SYS_fstat64)[__SIZEOF_LONG_LONG__ == 8]:
New defines.
(SYS_stat, SYS_lstat, SYS_fstat)[__SIZEOF_LONG_LONG__ == 8]: Redefine them.
* include/sys/stat.h (struct stat): Move definition to...
* include/linux/arm/kernel-stat.h,
include/linux/m2/kernel-stat.h,
include/linux/x86/kernel-stat.h,
include/linux/x86_64/kernel-stat.h: These new files.
* include/gnu/x86/kernel-stat.h: New file.
* configure (main): Copy <srcdest>include/<kernel>/<arch>/*.h to
include/.
* configure.sh: Likewise.
* .gitignore: Ignore them. Add copyright header.
* build-aux/GNUmakefile.in (X86_ARCH_HEADERS, ARCH_HEADERS): New
variables.
(build): Use them.
(include/arch/%.h, arch-dir): New targets.
* build-aux/bootstrap.sh.in (AM_CPPFLAGS): Replace
<srcdest>include/<kernel>/<cpu> with built ../include.
* build-aux/build.sh.in (AM_CPPFLAGS): Likewise.
* build-aux/install.sh.in: Also install built include.
* include/m2/types.h: New file.
* kaem.run: Use it.
* simple.sh: Copy kernel-stat.h, syscall.h for kernel/cpu to
include/arch.
2022-10-29 11:17:58 +00:00
|
|
|
-I ../include
|
|
|
|
-I include
|
2019-06-08 13:36:22 +00:00
|
|
|
"
|
|
|
|
compiler=mescc
|
2019-12-19 06:13:06 +00:00
|
|
|
AR=${MESAR-"${srcdest}pre-inst-env mesar"}
|
|
|
|
CC=${MESCC-"${srcdest}pre-inst-env mescc -m $mes_bits"}
|
2019-12-02 17:26:08 +00:00
|
|
|
# No user overrides for MesCC, they are probably intended for GCC
|
|
|
|
CFLAGS=
|
|
|
|
CPPFLAGS=
|
|
|
|
LDFLAGS=
|
2019-06-25 19:40:43 +00:00
|
|
|
${SHELL} ${srcdest}build-aux/build-lib.sh
|
2019-09-20 17:40:37 +00:00
|
|
|
${SHELL} ${srcdest}build-aux/build-source-lib.sh
|
2019-12-07 13:39:19 +00:00
|
|
|
if $bootstrap; then
|
2022-05-06 10:25:16 +00:00
|
|
|
rm -f globals.* # FIXME: avoid name clash with globals from lib
|
2019-12-08 14:32:51 +00:00
|
|
|
${SHELL} ${srcdest}build-aux/build-mes.sh
|
2019-11-03 21:15:11 +00:00
|
|
|
cp -f bin/mes-mescc ../bin
|
|
|
|
cp -f bin/mes ../bin
|
2019-12-08 14:32:51 +00:00
|
|
|
fi
|
2019-06-08 13:36:22 +00:00
|
|
|
)
|