diff --git a/config/dev b/config/dev deleted file mode 100755 index aab5181..0000000 --- a/config/dev +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -set -e - -REPO="$(realpath "$(dirname "$(realpath "$0")")/..")" - -if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi - -"$REPO/configure" --enable-assert --enable-guard diff --git a/config/i386 b/config/i386 deleted file mode 100755 index fb3ce73..0000000 --- a/config/i386 +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -set -e - -ARCH='i386' -HOST="$ARCH-elf" -REPO="$(realpath "$(dirname "$(realpath "$0")")/..")" -PREFIX="$REPO/vendor/cross" -BIN="$PREFIX/bin" - -if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi - -export AR="$BIN/$HOST-ar" -export CC="$BIN/$HOST-gcc" -export RANLIB="$BIN/$HOST-ranlib" - -export CFLAGS='-ffreestanding -nostdlib -fno-builtin -fno-stack-protector' - -"$REPO/configure" --host="$HOST" --enable-assert --enable-guard --with-libc diff --git a/config/riscv64 b/config/riscv64 deleted file mode 100755 index 69a98c3..0000000 --- a/config/riscv64 +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -set -e - -ARCH='riscv64' -HOST="$ARCH-elf" -REPO="$(realpath "$(dirname "$(realpath "$0")")/..")" -PREFIX="$REPO/vendor/cross" -BIN="$PREFIX/bin" - -if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi - -export AR="$BIN/$HOST-ar" -export CC="$BIN/$HOST-gcc" -export RANLIB="$BIN/$HOST-ranlib" - -export CFLAGS='-ffreestanding -nostdlib -fno-builtin -fno-stack-protector' - -"$REPO/configure" --host="$HOST" --enable-assert --enable-guard --with-libc diff --git a/config/x86_64 b/config/x86_64 deleted file mode 100755 index 74172e4..0000000 --- a/config/x86_64 +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -set -e - -ARCH='x86_64' -HOST="$ARCH-elf" -REPO="$(realpath "$(dirname "$(realpath "$0")")/..")" -PREFIX="$REPO/vendor/cross" -BIN="$PREFIX/bin" - -if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi - -export AR="$BIN/$HOST-ar" -export CC="$BIN/$HOST-gcc" -export RANLIB="$BIN/$HOST-ranlib" - -export CFLAGS='-ffreestanding -nostdlib -fno-builtin -fno-stack-protector' - -"$REPO/configure" --host="$HOST" --enable-assert --enable-guard --with-libc diff --git a/config/x86_64-stivale2 b/config/x86_64-stivale2 deleted file mode 100755 index 8ba388f..0000000 --- a/config/x86_64-stivale2 +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -set -e - -ARCH='x86_64' -HOST="$ARCH-elf" -REPO="$(realpath "$(dirname "$(realpath "$0")")/..")" -PREFIX="$REPO/vendor/cross" -BIN="$PREFIX/bin" - -if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi - -export AR="$BIN/$HOST-ar" -export CC="$BIN/$HOST-gcc" -export RANLIB="$BIN/$HOST-ranlib" - -export CFLAGS='-ffreestanding -nostdlib -fno-builtin -fno-stack-protector -fno-pic -mabi=sysv -mno-80387 -mno-3dnow -mno-sse -mno-sse2 -mno-red-zone -mcmodel=kernel -MMD' - -"$REPO/configure" --host="$HOST" --enable-assert --enable-guard --with-libc