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 279e873 commit ca334daCopy full SHA for ca334da
build.rs
@@ -203,7 +203,7 @@ fn get_r_library(r_home: &Path) -> PathBuf {
203
// For Windows
204
(true, "x86_64") => Path::new(r_home).join("bin").join("x64"),
205
(true, "x86") => Path::new(r_home).join("bin").join("i386"),
206
- (true, "aarch64") => Path::new(r_home).join("bin").join("aarch64"),
+ (true, "aarch64") => Path::new(r_home).join("bin").join("x64"),
207
(true, _) => panic!("Unknown architecture"),
208
// For Unix-alike
209
(false, _) => Path::new(r_home).join("lib"),
0 commit comments