mirror of
https://github.com/tailix/libkernaux.git
synced 2025-04-14 17:32:55 -04:00
Remove "dev" configs
This commit is contained in:
parent
721e2075ef
commit
c3939da4eb
5 changed files with 0 additions and 85 deletions
|
@ -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
|
19
config/i386
19
config/i386
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
Loading…
Add table
Reference in a new issue