Skip to content

Commit ca334da

Browse files
committed
fixed path [generate bindings]
1 parent 279e873 commit ca334da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ fn get_r_library(r_home: &Path) -> PathBuf {
203203
// For Windows
204204
(true, "x86_64") => Path::new(r_home).join("bin").join("x64"),
205205
(true, "x86") => Path::new(r_home).join("bin").join("i386"),
206-
(true, "aarch64") => Path::new(r_home).join("bin").join("aarch64"),
206+
(true, "aarch64") => Path::new(r_home).join("bin").join("x64"),
207207
(true, _) => panic!("Unknown architecture"),
208208
// For Unix-alike
209209
(false, _) => Path::new(r_home).join("lib"),

0 commit comments

Comments
 (0)