mirror of
https://github.com/tailix/libkernaux.git
synced 2024-10-30 11:54:01 -04:00
19 lines
514 B
Bash
Executable file
19 lines
514 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
REPO="$(realpath "$(dirname "$(realpath "$0")")/..")"
|
|
if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi
|
|
|
|
ARCH='x86_64'
|
|
HOST="$ARCH-elf"
|
|
TARGET='x86_64-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 -fno-pic -mabi=sysv -mcmodel=kernel -mno-80387 -mno-red-zone'
|
|
|
|
"$REPO/configure" --host="$HOST" --prefix="$PREFIX" --with-libc
|