1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-11-13 11:04:27 -05:00
libkernaux/config/root-cross-x86_64-linux

20 lines
507 B
Text
Raw Normal View History

2022-01-17 06:34:38 -05:00
#!/bin/sh
2022-02-09 14:59:08 -05:00
set -eux
2022-01-17 06:34:38 -05:00
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='-fno-pic -ffreestanding -nostdlib -fno-stack-protector -mabi=sysv -mcmodel=kernel -mno-80387 -mno-red-zone'
2022-01-17 06:34:38 -05:00
"$REPO/configure" --host="$HOST" --prefix="$PREFIX" --with-libc-all