redox/recipes/other/newlibtest/recipe.sh
2023-11-05 15:05:55 +00:00

28 lines
686 B
Bash

GIT=https://gitlab.redox-os.org/redox-os/newlibtest.git
BUILD_DEPENDS=(newlib)
function recipe_version {
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
skip=1
}
function recipe_build {
sysroot="$(realpath ../sysroot)"
export CFLAGS="-static -nostdinc -I $sysroot/include -I /usr/lib/gcc/x86_64-unknown-redox/7.0.1/include/ -nostdlib -L $sysroot/lib"
export CRT="$sysroot/lib/crt0.o"
export CLIBS="-lc"
"$REDOX_MAKE" all -j"$($NPROC)"
skip=1
}
function recipe_clean {
"$REDOX_MAKE" clean
skip=1
}
function recipe_stage {
dest="$(realpath $1)"
"$REDOX_MAKE" DESTDIR="$dest" prefix=/ install
skip=1
}