mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
19 lines
463 B
Bash
Executable file
19 lines
463 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
ARCH='x86_64'
|
|
HOST="$ARCH-elf"
|
|
REPO="$(realpath "$(dirname "$(realpath "$0")")/..")"
|
|
PREFIX="$REPO/vendor/cross"
|
|
BIN="$PREFIX/bin"
|
|
|
|
if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi
|
|
|
|
export AR="$BIN/$HOST-ar"
|
|
export CC="$BIN/$HOST-gcc"
|
|
export RANLIB="$BIN/$HOST-ranlib"
|
|
|
|
export CFLAGS='-ffreestanding -nostdlib -fno-builtin -fno-stack-protector'
|
|
|
|
"$REPO/configure" --host="$HOST" --enable-assert --enable-guard --with-libc
|