We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cb9569 commit 1a9b970Copy full SHA for 1a9b970
onnxruntime-sys/build.rs
@@ -215,6 +215,8 @@ impl FromStr for Architecture {
215
match s.to_lowercase().as_str() {
216
"x86" => Ok(Architecture::X86),
217
"x86_64" => Ok(Architecture::X86_64),
218
+ "arm" => Ok(Architecture::Arm),
219
+ "aarch64" => Ok(Architecture::Arm64),
220
_ => Err(format!("Unsupported architecture: {}", s)),
221
}
222
0 commit comments