mirror of
https://github.com/tailix/libkernaux.git
synced 2024-10-30 11:54:01 -04:00
17 lines
418 B
Bash
Executable file
17 lines
418 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eux
|
|
|
|
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-drivers --with-libc
|