8df367b3a2
* build-aux/snarf.sh: New file. * build-aux/build-cc.sh: Use it. * build-aux/build-cc32.sh: Likewise. * build-aux/build-cc64.sh: Likewise. * build-aux/build-mes.sh: Likewise. * build-aux/build-x86_64-mes.sh: Likewise. * build-aux/snarf.sh: Likewise.
55 lines
2.2 KiB
Bash
Executable file
55 lines
2.2 KiB
Bash
Executable file
#! /bin/sh
|
|
|
|
# GNU Mes --- Maxwell Equations of Software
|
|
# Copyright © 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/>.
|
|
|
|
set -e
|
|
|
|
. ${srcdest}build-aux/config.sh
|
|
. ${srcdest}build-aux/trace.sh
|
|
|
|
LIBC=${LIBC-c}
|
|
|
|
# cc64-mes
|
|
sh ${srcdest}build-aux/snarf.sh --mes
|
|
|
|
ARCHDIR=1 NOLINK=1 sh ${srcdest}build-aux/cc64-mes.sh lib/linux/x86_64-mes-gcc/crt0
|
|
ARCHDIR=1 NOLINK=1 sh ${srcdest}build-aux/cc64-mes.sh lib/linux/x86_64-mes-gcc/crt1
|
|
ARCHDIR=1 NOLINK=1 sh ${srcdest}build-aux/cc64-mes.sh lib/linux/x86_64-mes-gcc/crti
|
|
ARCHDIR=1 NOLINK=1 sh ${srcdest}build-aux/cc64-mes.sh lib/linux/x86_64-mes-gcc/crtn
|
|
ARCHDIR=1 NOLINK=1 sh ${srcdest}build-aux/cc64-mes.sh lib/libc-mini
|
|
ARCHDIR=1 NOLINK=1 sh ${srcdest}build-aux/cc64-mes.sh lib/libc
|
|
ARCHDIR=1 NOLINK=1 sh ${srcdest}build-aux/cc64-mes.sh lib/libc+tcc
|
|
ARCHDIR=1 NOLINK=1 sh ${srcdest}build-aux/cc64-mes.sh lib/libtcc1
|
|
ARCHDIR=1 NOLINK=1 sh ${srcdest}build-aux/cc64-mes.sh lib/libc+gnu
|
|
ARCHDIR=1 NOLINK=1 sh ${srcdest}build-aux/cc64-mes.sh lib/libg
|
|
ARCHDIR=1 NOLINK=1 sh ${srcdest}build-aux/cc64-mes.sh lib/libgetopt
|
|
|
|
LIBC= sh ${srcdest}build-aux/cc64-mes.sh scaffold/main
|
|
LIBC=c-mini sh ${srcdest}build-aux/cc64-mes.sh scaffold/hello
|
|
LIBC=c-mini sh ${srcdest}build-aux/cc64-mes.sh scaffold/argv
|
|
sh ${srcdest}build-aux/cc64-mes.sh scaffold/read
|
|
sh ${srcdest}build-aux/cc64-mes.sh scaffold/malloc
|
|
sh ${srcdest}build-aux/cc64-mes.sh scaffold/micro-mes
|
|
sh ${srcdest}build-aux/cc64-mes.sh scaffold/tiny-mes
|
|
# sh ${srcdest}build-aux/cc64-mes.sh scaffold/cons-mes
|
|
sh ${srcdest}build-aux/cc64-mes.sh scaffold/mini-mes
|
|
|
|
sh ${srcdest}build-aux/cc64-mes.sh src/mes
|
|
cp src/mes.x86_64-mes-gcc-out src/mes
|