|
@@ -18,6 +18,8 @@ pub fn target_triple() -> Result<String, crate::Error> {
|
|
"x86_64"
|
|
"x86_64"
|
|
} else if cfg!(target_arch = "arm") {
|
|
} else if cfg!(target_arch = "arm") {
|
|
"armv7"
|
|
"armv7"
|
|
|
|
+ } else if cfg!(target_arch = "aarch64") {
|
|
|
|
+ "aarch64"
|
|
} else {
|
|
} else {
|
|
return Err(crate::Error::ArchError(String::from(
|
|
return Err(crate::Error::ArchError(String::from(
|
|
"Unable to determine target-architecture",
|
|
"Unable to determine target-architecture",
|