We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc3ec63 commit ae21b11Copy full SHA for ae21b11
source/rust_bundle/build.rs
@@ -38,8 +38,13 @@ fn main() {
38
39
#[cfg(windows)]
40
let cargo_dir = format!("{}cargo\\build\\x86_64-pc-windows-msvc\\release\\", build_dir);
41
+
42
+ // New format for corrosion: build/cargo/brres-sys_2eabb/aarch64-apple-darwin/release/
43
+ // (WAS: build/argo/build/aarch64-apple-darwin/release/)
44
+ //
45
+ // The .a files are mirrored in build/* though
46
#[cfg(unix)]
- let cargo_dir = format!("{}cargo/build/aarch64-apple-darwin/release/", build_dir);
47
+ let cargo_dir = format!("{}", build_dir);
48
49
50
{
0 commit comments