libkernaux/config/root-cross-i386-linux

18 lines
397 B
Plaintext
Raw Normal View History

2022-01-17 11:34:38 +00:00
#!/bin/sh
2022-02-09 19:59:08 +00:00
set -eux
2022-01-17 11:34:38 +00:00
REPO="$(realpath "$(dirname "$(realpath "$0")")/..")"
if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi
ARCH='i386'
HOST="$ARCH-elf"
TARGET='i686-linux-gnu'
PREFIX="/opt/libkernaux/$ARCH"
export AR="$TARGET-ar"
export CC="$TARGET-gcc"
export RANLIB="$TARGET-ranlib"
2022-06-12 13:52:40 +00:00
"$REPO/configure" --host="$HOST" --prefix="$PREFIX" --enable-freestanding --with-libc