diff options
| author | KreitinnSoftware <80591934+KreitinnSoftware@users.noreply.github.com> | 2024-01-26 04:20:53 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-26 08:20:53 +0100 |
| commit | fc63442ded7f4af5c90486d527e2a2a4d265ccce (patch) | |
| tree | c9438c599fa87039dfa1290ec6395f481ec5344d /.github | |
| parent | 0ee5174e18631815137e59c0a8f7fd6a38f484d3 (diff) | |
| download | box64-fc63442ded7f4af5c90486d527e2a2a4d265ccce.tar.gz box64-fc63442ded7f4af5c90486d527e2a2a4d265ccce.zip | |
Add 'BOX64_MMAP32' to help info (#1220)
* Add 'BOX64_MMAP32' to help info * [CI] Update NDK to 25b for Android Builds
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4c72d736..06360998 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,10 +49,10 @@ jobs: if [[ ${{ matrix.platform }} != 'X64' && ${{ matrix.platform }} != 'OTHER_ARM' && ${{ matrix.platform }} != 'RISCV' ]]; then sudo apt-get -y install git cmake make python3 if [[ ${{ matrix.platform }} == 'ANDROID' ]]; then - wget https://dl.google.com/android/repository/android-ndk-r23b-linux.zip - unzip android-ndk-r23b-linux.zip - echo "BOX64_COMPILER=$PWD/android-ndk-r23b/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android31-clang" >> $GITHUB_ENV - echo "BOX64_PLATFORM_MARCRO=-DANDROID=1 -DARM_DYNAREC=1 -DNOLOADADDR=1" >> $GITHUB_ENV + wget https://dl.google.com/android/repository/android-ndk-r25b-linux.zip + unzip android-ndk-r25b-linux.zip + echo "BOX64_COMPILER=$PWD/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android31-clang" >> $GITHUB_ENV + echo "BOX64_PLATFORM_MARCRO=-DANDROID=1 -DARM_DYNAREC=1 -DBAD_SIGNAL=1" >> $GITHUB_ENV else sudo apt-get -y install git gcc-aarch64-linux-gnu echo "BOX64_PLATFORM_MARCRO=-D${{ matrix.platform }}=1" >> $GITHUB_ENV |