libkernaux/config/dev-cross-x86_64

20 lines
488 B
Plaintext
Raw Normal View History

2022-01-17 12:05:14 +00:00
#!/bin/sh
2022-02-09 19:59:08 +00:00
set -eux
2022-01-17 12:05:14 +00:00
REPO="$(realpath "$(dirname "$(realpath "$0")")/..")"
if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi
ARCH='x86_64'
HOST="$ARCH-elf"
PREFIX="$REPO/dest/dev-cross-$ARCH"
2022-01-17 18:06:32 +00:00
CROSS="$REPO/vendor/cross/root/bin/$HOST"
2022-01-17 12:05:14 +00:00
export AR="$CROSS-ar"
export CC="$CROSS-gcc"
export RANLIB="$CROSS-ranlib"
export CFLAGS='-mabi=sysv -mcmodel=kernel -mno-80387 -mno-red-zone'
2022-01-17 12:05:14 +00:00
2022-06-12 13:52:40 +00:00
"$REPO/configure" --host="$HOST" --prefix="$PREFIX" --enable-freestanding --with-libc