Remove "dev" configs

This commit is contained in:
Alex Kotov 2022-01-17 16:35:46 +05:00
parent 721e2075ef
commit c3939da4eb
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
5 changed files with 0 additions and 85 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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