1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-02-24 15:55:41 -05:00
libkernaux/config/root-cross-riscv64-linux

18 lines
403 B
Text
Raw Normal View History

2022-01-17 16:34:38 +05:00
#!/bin/sh
2022-02-10 00:59:08 +05:00
set -eux
2022-01-17 16:34:38 +05:00
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"
"$REPO/configure" --host="$HOST" --prefix="$PREFIX" --enable-freestanding --with-libc