diff options
author | Leonard Kugis <leonard@kug.is> | 2025-10-02 17:54:38 +0200 |
---|---|---|
committer | Leonard Kugis <leonard@kug.is> | 2025-10-02 17:54:38 +0200 |
commit | a5edbefda8786886047679cb2f7a5558ea8135e7 (patch) | |
tree | d5cefb5180f7c30f9ce34c5264442c8aad76b22a /scripts/make-android28-aarch64.sh | |
parent | 0e026c5f7917f3b0e3e32df01e4482200b8f9595 (diff) | |
download | libfuse-android-stable.tar.gz |
Implemented scripts for different build targetsandroid-stable
Invoke them like this:
SYSROOT_DIR=<sysroot> scripts/make-<target>.sh
<sysroot> being the desired sysroot directory for the install files.
<target> being the target definition.
Diffstat (limited to 'scripts/make-android28-aarch64.sh')
-rwxr-xr-x | scripts/make-android28-aarch64.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/make-android28-aarch64.sh b/scripts/make-android28-aarch64.sh new file mode 100755 index 0000000..86bbaff --- /dev/null +++ b/scripts/make-android28-aarch64.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +mkdir -p "$SYSROOT_DIR" + +rm -rf build +meson setup build \ + --cross-file meson/android28-aarch64 \ + --prefix /usr/local \ + -Dexamples=false -Dtests=false -Dutils=false + +meson compile -C build -j"$(nproc)" +meson install -C build --destdir $SYSROOT_DIR |