paleolimbot commented on code in PR #3313:
URL: https://github.com/apache/arrow-adbc/pull/3313#discussion_r2286795083


##########
rust/driver_manager/src/lib.rs:
##########
@@ -1804,14 +1804,24 @@ fn get_search_paths(lvls: LoadFlags) -> Vec<PathBuf> {
 const fn arch_triplet() -> (&'static str, &'static str, &'static str) {
     #[cfg(target_arch = "x86_64")]
     const ARCH: &str = "amd64";
-    #[cfg(target_arch = "aarch64")]
+    #[cfg(all(target_arch = "aarch64", target_endian = "big"))]
+    const ARCH: &str = "arm64be";

Review Comment:
   Should this have `#[cfg(all(target_arch = "wasm32", target_os = 
"unknown"))]` somewhere (or is that handled elsewhere?)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to