Skip to content

Commit

Permalink
refactor: remove unused install_archs function
Browse files Browse the repository at this point in the history
  • Loading branch information
alxkzmn committed Jan 6, 2025
1 parent cdc5065 commit 7156785
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions mopro-ffi/src/app_config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,3 @@ pub fn install_arch(arch: String) {
.wait()
.unwrap_or_else(|_| panic!("Failed to install target architecture {}", arch));
}

pub fn install_archs() {
let archs = vec![
"x86_64-apple-ios",
"aarch64-apple-ios",
"aarch64-apple-ios-sim",
"aarch64-linux-android",
"armv7-linux-androideabi",
"i686-linux-android",
"x86_64-linux-android",
];
for arch in archs {
install_arch(arch.to_string());
}
}

0 comments on commit 7156785

Please sign in to comment.