Merge branch 'fix-liborbital' into 'master'

Fix liborbital for non x86_64 targets

See merge request redox-os/cookbook!644
This commit is contained in:
Jeremy Soller 2025-09-28 10:35:17 -06:00
commit 2c82b6c92a

View File

@ -7,5 +7,6 @@ script = """
DYNAMIC_STATIC_INIT
rsync -av --delete "${COOKBOOK_SOURCE}/" ./
"${COOKBOOK_CARGO}" build --release
"${COOKBOOK_MAKE}" install HOST="${TARGET}" DESTDIR="${COOKBOOK_STAGE}"
# other than x86_64 this will trigger error because of lacking .so files, which is fine
"${COOKBOOK_MAKE}" install HOST="${TARGET}" DESTDIR="${COOKBOOK_STAGE}" || true
"""