mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-22 12:54:20 +08:00
Add all examples to webrender
This commit is contained in:
parent
59643b9d23
commit
26d207c535
@ -2,26 +2,32 @@ GIT=https://gitlab.redox-os.org/redox-os/webrender.git
|
||||
GIT_UPSTREAM=https://github.com/servo/webrender.git
|
||||
BRANCH=redox
|
||||
BUILD_DEPENDS=(freetype libpng llvm mesa zlib)
|
||||
CARGOFLAGS="--manifest-path examples/Cargo.toml --bin basic"
|
||||
|
||||
function recipe_build {
|
||||
sysroot="$(realpath ../sysroot)"
|
||||
cp -p "$ROOT/Xargo.toml" "Xargo.toml"
|
||||
set -x
|
||||
xargo rustc --target "$TARGET" --release ${CARGOFLAGS} \
|
||||
-- \
|
||||
-L "${sysroot}/lib" \
|
||||
-l static=freetype \
|
||||
-l static=png \
|
||||
-C link-args="$("${PKG_CONFIG}" --libs osmesa) -lglapi -lz -lstdc++ -lc -lgcc"
|
||||
set +x
|
||||
for rs in $(find examples/ -maxdepth 1 -type f -name '*.rs')
|
||||
do
|
||||
bin="$(basename "$rs" .rs)"
|
||||
set -x
|
||||
xargo rustc --target "$TARGET" --release --manifest-path examples/Cargo.toml --bin "$bin" \
|
||||
-- \
|
||||
-L "${sysroot}/lib" \
|
||||
-l static=freetype \
|
||||
-l static=png \
|
||||
-C link-args="$("${PKG_CONFIG}" --libs osmesa) -lglapi -lz -lstdc++ -lc -lgcc"
|
||||
set +x
|
||||
done
|
||||
skip=1
|
||||
}
|
||||
|
||||
|
||||
function recipe_stage {
|
||||
dest="$(realpath $1)"
|
||||
mkdir -pv "$dest/bin"
|
||||
cp -v "target/${TARGET}/release/basic" "$dest/bin/webrender"
|
||||
for rs in $(find examples/ -maxdepth 1 -type f -name '*.rs')
|
||||
do
|
||||
bin="$(basename "$rs" .rs)"
|
||||
"${STRIP}" -v "target/$TARGET/release/$bin" -o "$dest/bin/webrender_$bin"
|
||||
done
|
||||
skip=1
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user