summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2020-09-02 02:59:51 -0400
committerGitHub <noreply@github.com>2020-09-02 02:59:51 -0400
commit22278d7d75d3e5c582af2c178bad99014b570fe0 (patch)
tree06f26b86c1b46bcd4ad843fb72882ab30d1bcf84 /src/utils
parent663ae6c5c25a2ef88eff856c202265c8a1455f06 (diff)
other: aarch64 support (#217)
Adds theoretical aarch64 support.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/error.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/error.rs b/src/utils/error.rs
index 1cb17595..8bfec098 100644
--- a/src/utils/error.rs
+++ b/src/utils/error.rs
@@ -42,6 +42,7 @@ impl From<std::io::Error> for BottomError {
}
}
+#[cfg(not(any(target_arch = "aarch64", target_arch = "arm")))]
impl From<heim::Error> for BottomError {
fn from(err: heim::Error) -> Self {
BottomError::InvalidHeim(err.to_string())