Skip to content

Commit

Permalink
chore: disable armv7
Browse files Browse the repository at this point in the history
  • Loading branch information
chancehudson committed Jan 22, 2025
1 parent 4d6859c commit 686668c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions mopro-ffi/src/app_config/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ struct AndriodArchInfo {
}

// Architecture strings need to be aligned with those in the CLI.
const ANDROID_ARCHS: [AndriodArchInfo; 3] = [
const ANDROID_ARCHS: &[AndriodArchInfo] = &[
AndriodArchInfo {
arch: AndroidArch::X8664Linux,
str: "x86_64-linux-android",
Expand All @@ -132,10 +132,10 @@ const ANDROID_ARCHS: [AndriodArchInfo; 3] = [
// arch: AndroidArch::I686Linux,
// str: "i686-linux-android",
// },
AndriodArchInfo {
arch: AndroidArch::Armv7LinuxAbi,
str: "armv7-linux-androideabi",
},
// AndriodArchInfo {
// arch: AndroidArch::Armv7LinuxAbi,
// str: "armv7-linux-androideabi",
// },
AndriodArchInfo {
arch: AndroidArch::Aarch64Linux,
str: "aarch64-linux-android",
Expand Down

0 comments on commit 686668c

Please sign in to comment.