From 5547f84097e0c64b139b5617a4ab7d2a66674c5c Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jeremy@system76.com> Date: Wed, 10 Apr 2019 20:41:46 -0600 Subject: [PATCH] Add dynamic linking example (does not work yet) --- recipes/dynamic-example/recipe.sh | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 recipes/dynamic-example/recipe.sh diff --git a/recipes/dynamic-example/recipe.sh b/recipes/dynamic-example/recipe.sh new file mode 100644 index 000000000..d14985ba4 --- /dev/null +++ b/recipes/dynamic-example/recipe.sh @@ -0,0 +1,35 @@ +GIT=https://gitlab.redox-os.org/redox-os/dynamic-example.git + +function recipe_version { + printf "1.0.0" + skip=1 +} + +function recipe_update { + echo "skipping update" + skip=1 +} + +function recipe_build { + sysroot="$(realpath ../sysroot)" + export LDFLAGS="-L$sysroot/lib" + export CPPFLAGS="-I$sysroot/include" + make prefix=/ + skip=1 +} + +function recipe_test { + echo "skipping test" + skip=1 +} + +function recipe_clean { + make clean + skip=1 +} + +function recipe_stage { + dest="$(realpath $1)" + make prefix=/ DESTDIR="$dest" install + skip=1 +} -- GitLab