You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
281 B

#!/bin/bash
ARCH=riscv64
CC=${ARCH}-unknown-elf-gcc
CFLAGS="-nostartfiles -nostdlib -nodefaultlibs -o output/a.out -T ${ARCH}.ld -fno-builtin"
if ! [[ -d output ]]
then
mkdir output
fi
#CFLAGS="${CFLAGS} -DRISCV_QEMU"
${CC} ${CFLAGS} test.c
mksfs zip output ./user-${ARCH}.img