2022-01-17 07:05:14 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
2022-02-09 14:59:08 -05:00
|
|
|
set -eux
|
2022-01-17 07:05:14 -05:00
|
|
|
|
|
|
|
REPO="$(realpath "$(dirname "$(realpath "$0")")/..")"
|
|
|
|
if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi
|
|
|
|
|
|
|
|
ARCH='riscv64'
|
|
|
|
HOST="$ARCH-elf"
|
|
|
|
PREFIX="$REPO/dest/dev-cross-$ARCH"
|
2022-01-17 13:06:32 -05:00
|
|
|
CROSS="$REPO/vendor/cross/root/bin/$HOST"
|
2022-01-17 07:05:14 -05:00
|
|
|
|
|
|
|
export AR="$CROSS-ar"
|
|
|
|
export CC="$CROSS-gcc"
|
|
|
|
export RANLIB="$CROSS-ranlib"
|
|
|
|
|
2022-02-02 00:08:31 -05:00
|
|
|
export CFLAGS='-ffreestanding -nostdlib -fno-stack-protector'
|
2022-01-17 07:05:14 -05:00
|
|
|
|
2022-02-01 21:26:35 -05:00
|
|
|
"$REPO/configure" --host="$HOST" --prefix="$PREFIX" --disable-pic --with-libc
|