mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-04 18:48:43 +08:00
14 lines
292 B
Bash
14 lines
292 B
Bash
GIT=https://gitlab.redox-os.org/redox-os/relibc.git
|
|
|
|
function recipe_build {
|
|
"$REDOX_MAKE" NATIVE_RELIBC=1 -C tests -j"$($NPROC)"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_stage {
|
|
dest="$(realpath $1)"
|
|
mkdir -pv "$dest/share/relibc"
|
|
cp -rv "tests" "$dest/share/relibc/tests"
|
|
skip=1
|
|
}
|