#!/bin/sh set -e REPO="$(realpath "$(dirname "$(realpath "$0")")/..")" if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi ARCH='riscv64' HOST="$ARCH-elf" TARGET='riscv64-linux-gnu' PREFIX="/opt/libkernaux/$ARCH" export AR="$TARGET-ar" export CC="$TARGET-gcc" export RANLIB="$TARGET-ranlib" export CFLAGS='-ffreestanding -nostdlib -fno-builtin -fno-stack-protector' "$REPO/configure" --host="$HOST" --prefix="$PREFIX" --with-libc