mirror of https://github.com/zeldaret/mm.git
24 lines
855 B
Bash
Executable File
24 lines
855 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -o pipefail
|
|
INPUT="$1"
|
|
OUTPUT="${INPUT%.c}.o"
|
|
|
|
CC="$QEMU_IRIX -silent -L $IRIX_ROOT $IRIX_ROOT/usr/bin/cc"
|
|
CFLAGS="-Wab,-r4300_mul -non_shared -G 0 -Xcpluscomm -fullwarn -wlint -woff 819,820,852,821 -signed -DVERSION_JP=1" # -I include
|
|
AS="mips-linux-gnu-as"
|
|
ASFLAGS="-march=vr4300 -mabi=32 --defsym VERSION_JP=1" # -I include
|
|
set +e
|
|
OPTFLAGS=$(grep '^// COMPILE-FLAGS: ' $INPUT | sed 's#^// COMPILE-FLAGS: ##')
|
|
ISET=$(grep '^// COMPILE-ISET: ' $INPUT | sed 's#^// COMPILE-ISET: ##')
|
|
set -e
|
|
if [[ -z "$OPTFLAGS" ]]; then
|
|
OPTFLAGS="-g"
|
|
fi
|
|
if [[ -z "$ISET" ]]; then
|
|
CFLAGS="$CFLAGS -mips2"
|
|
fi
|
|
|
|
python3 asm_processor.py $OPTFLAGS $ISET "$INPUT" | $CC -c $CFLAGS include-stdin.c -o "$OUTPUT" $OPTFLAGS
|
|
python3 asm_processor.py $OPTFLAGS $ISET "$INPUT" --post-process "$OUTPUT" --assembler "$AS $ASFLAGS" --asm-prelude prelude.s
|