6b5ac57602
* build-aux/build-cc.sh: Remove. * build-aux/build-cc32.sh: Remove. * build-aux/build-cc64.sh: Remove. * build-aux/build-x86_64-mes.sh: Remove. * build-aux/cc-mes.sh: Remove. * build-aux/cc-x86_64-mes.sh: Remove. * build-aux/cc32-mes.sh: Remove. * build-aux/cc64-mes.sh: Remove. * build-aux/test64.sh: Remove. * build-aux/bootstrap-mes.sh: New file. * build-aux/config.make.in: New file. * build-aux/config.status.in: New file. * build-aux/test-cc.sh: New file. * .gitignore: Update. * build-aux/GNUmakefile.in: Update. * build-aux/build-guile.sh: Update. * build-aux/build-mes.sh: Update. * build-aux/build.sh.in: Update. * build-aux/cc.sh: Update. * build-aux/check-boot.sh: Update. * build-aux/check-mes.sh: Update. * build-aux/check-mescc.sh: Update. * build-aux/check-tcc.sh: Update. * build-aux/check.sh.in: Update. * build-aux/config.sh: Update. * build-aux/export.make: Update. * build-aux/install.sh.in: Update. * build-aux/pre-inst-env.in: Update. * build-aux/test.sh: Update. * build-aux/uninstall.sh.in: Update. * configure: Update. * configure.sh: Update. * module/mescc/i386/as.scm: Update. * module/mescc/preprocess.scm: Update. * module/mescc/x86_64/as.scm: Update. * scripts/mescc.in: Update. * tests/psyntax.test: Update.
102 lines
3.4 KiB
Bash
Executable file
102 lines
3.4 KiB
Bash
Executable file
#! /bin/sh
|
|
|
|
# GNU Mes --- Maxwell Equations of Software
|
|
# Copyright © 2017,2018 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/>.
|
|
|
|
. ./config.status
|
|
. ${srcdest}build-aux/config.sh
|
|
. ${srcdest}build-aux/trace.sh
|
|
|
|
set -e
|
|
|
|
# FIXME?
|
|
#mes_program_prefix=boot-$arch-
|
|
mes_program_prefix=$program_prefix
|
|
trace "HEX2 0exit-42" $HEX2\
|
|
$HEX2FLAGS\
|
|
-f ${srcdest}lib/$mes_arch/elf$bits-0header.hex2\
|
|
-f ${srcdest}lib/$mes_arch/elf$bits-body-exit-42.hex2\
|
|
-f ${srcdest}lib/$mes_arch/elf-0footer.hex2\
|
|
--exec_enable\
|
|
-o lib/$mes_arch/${mes_program_prefix}0exit-42
|
|
|
|
trace "TEST lib/$mes_arch/${mes_program_prefix}0exit-42" echo lib/$mes_arch/${mes_program_prefix}0exit-42
|
|
{ set +e; lib/$mes_arch/${mes_program_prefix}0exit-42; r=$?; set -e; }
|
|
[ $r != 42 ] && echo " => $r" && exit 1
|
|
|
|
trace "HEX2 exit-42" $HEX2\
|
|
$HEX2FLAGS\
|
|
-f ${srcdest}lib/$mes_arch/elf$bits-header.hex2\
|
|
-f ${srcdest}lib/$mes_arch/elf$bits-body-exit-42.hex2\
|
|
-f ${srcdest}lib/$mes_arch/elf$bits-footer-single-main.hex2\
|
|
--exec_enable\
|
|
-o lib/$mes_arch/${mes_program_prefix}exit-42
|
|
|
|
trace "TEST lib/$mes_arch/${mes_program_prefix}exit-42" echo lib/$mes_arch/${mes_program_prefix}exit-42
|
|
{ set +e; lib/$mes_arch/${mes_program_prefix}exit-42; r=$?; set -e; }
|
|
[ $r != 42 ] && echo " => $r" && exit 1
|
|
|
|
|
|
mkdir -p lib/$mes_arch
|
|
trace "M1 crt1.S" $M1\
|
|
$M1FLAGS\
|
|
-f ${srcdest}lib/$mes_arch/$arch.M1\
|
|
-f $MES_SEED/$mes_arch/crt1.S\
|
|
-o lib/$mes_arch/crt1.o
|
|
trace "M1 libc.S" $M1\
|
|
$M1FLAGS\
|
|
-f ${srcdest}lib/$mes_arch/$arch.M1\
|
|
-f $MES_SEED/$mes_arch/libc.S\
|
|
-o lib/$mes_arch/libc.o
|
|
trace "M1 mes.S" $M1\
|
|
--LittleEndian\
|
|
--Architecture 1\
|
|
-f ${srcdest}lib/$mes_arch/$arch.M1\
|
|
-f $MES_SEED/$mes_arch/mes.S\
|
|
-o src/mes.o
|
|
trace "BLOOD_ELF mes.S" $BLOOD_ELF\
|
|
-f ${srcdest}lib/$mes_arch/$arch.M1\
|
|
-f $MES_SEED/$mes_arch/mes.S\
|
|
-f $MES_SEED/$mes_arch/libc.S\
|
|
-o src/mes.S.blood-elf
|
|
trace "M1 mes.blood-elf" $M1\
|
|
--LittleEndian\
|
|
--Architecture 1\
|
|
-f src/mes.S.blood-elf\
|
|
-o src/mes.o.blood-elf
|
|
trace "HEX2 mes.o" $HEX2\
|
|
$HEX2FLAGS\
|
|
-f ${srcdest}lib/$mes_arch/elf$bits-header.hex2\
|
|
-f lib/$mes_arch/crt1.o\
|
|
-f lib/$mes_arch/libc.o\
|
|
-f src/mes.o\
|
|
-f src/mes.o.blood-elf\
|
|
--exec_enable\
|
|
-o src/${mes_program_prefix}mes
|
|
#cp src/${mes_program_prefix}mes src/${program_prefix}mes
|
|
trace "M1 libc+tcc.S" $M1\
|
|
$M1FLAGS\
|
|
-f ${srcdest}lib/$mes_arch/$arch.M1\
|
|
-f $MES_SEED/$mes_arch/libc+tcc.S\
|
|
-o lib/$mes_arch/libc+tcc.o
|
|
trace "M1 libc+gnu.S" $M1\
|
|
$M1FLAGS\
|
|
-f ${srcdest}lib/$mes_arch/$arch.M1\
|
|
-f $MES_SEED/$mes_arch/libc+gnu.S\
|
|
-o lib/$mes_arch/libc+gnu.o
|