1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-10-30 11:54:01 -04:00
libkernaux/config/dev-cross-i386

20 lines
478 B
Text
Raw Normal View History

2022-01-17 07:05:14 -05:00
#!/bin/sh
set -e
REPO="$(realpath "$(dirname "$(realpath "$0")")/..")"
if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi
ARCH='i386'
HOST="$ARCH-elf"
PREFIX="$REPO/dest/dev-cross-$ARCH"
2022-01-17 13:06:32 -05:00
CROSS="$REPO/vendor/cross/root/bin/$HOST"
2022-01-17 07:05:14 -05:00
export AR="$CROSS-ar"
export CC="$CROSS-gcc"
export RANLIB="$CROSS-ranlib"
export CFLAGS='-ffreestanding -nostdlib -fno-builtin -fno-stack-protector -fno-pic'
"$REPO/configure" --host="$HOST" --prefix="$PREFIX" --with-libc