Skip to content

Commit 584dd1d

Browse files
committed
Improve libwg rerun-if-changed detection
1 parent 0dbe7cd commit 584dd1d

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

wireguard-go-rs/build.rs

+20-8
Original file line numberDiff line numberDiff line change
@@ -168,13 +168,15 @@ fn build_android_dynamic_lib(daita: bool) -> anyhow::Result<()> {
168168
let target_triple = env::var("TARGET").context("Missing 'TARGET'")?;
169169
let target = AndroidTarget::from_str(&target_triple)?;
170170

171-
// TODO: Since `libwg.so` is always copied to `android_output_path`, this rerun-directive will
172-
// always trigger cargo to rebuild this crate. Some mechanism to detected changes to `android_output_path`
173-
// is needed, because some external program may clean it at any time (e.g. gradle).
171+
// This will either trigger a rebuild if any changes have been made to the libwg code
172+
// or if the libwg.so file has been changed. The latter is required since the
173+
// libwg.so file could be deleted. It however means that this build will need
174+
// to run two times before it is properly cached.
174175
println!(
175176
"cargo::rerun-if-changed={}",
176-
android_output_path(target)?.display()
177+
android_output_path(target)?.join("libwg.so").display()
177178
);
179+
println!("cargo::rerun-if-changed={}", libwg_path()?.display());
178180

179181
// Before calling `canonicalize`, the directory we're referring to actually has to exist.
180182
std::fs::create_dir_all("../build")?;
@@ -229,12 +231,14 @@ fn android_move_binary(binary: &Path, output: &Path) -> anyhow::Result<()> {
229231
))?;
230232
std::fs::create_dir_all(parent_of_output)?;
231233

232-
let mut move_command = Command::new("mv");
233-
move_command
234+
let mut copy_command = Command::new("cp");
235+
// P command is required to not rebuild this module everytime
236+
copy_command
237+
.arg("-p")
234238
.arg(binary.to_str().unwrap())
235239
.arg(output.to_str().unwrap());
236240

237-
exec(&mut move_command)?;
241+
exec(&mut copy_command)?;
238242

239243
Ok(())
240244
}
@@ -273,12 +277,20 @@ fn android_arch_name(target: AndroidTarget) -> String {
273277

274278
// Returns the path where the Android project expects Rust binaries to be
275279
fn android_output_path(target: AndroidTarget) -> anyhow::Result<PathBuf> {
276-
let relative_output_path = Path::new("../android/app/build/extraJni").join(android_abi(target));
280+
let relative_output_path =
281+
Path::new("../android/app/build/rustJniLibs/android").join(android_abi(target));
277282
std::fs::create_dir_all(relative_output_path.clone())?;
278283
let output_path = relative_output_path.canonicalize()?;
279284
Ok(output_path)
280285
}
281286

287+
// Return the path of the libwg folder so that we can trigger rebuilds when any code is
288+
fn libwg_path() -> anyhow::Result<PathBuf> {
289+
let relative_output_path = Path::new("libwg");
290+
let output_path = relative_output_path.canonicalize()?;
291+
Ok(output_path)
292+
}
293+
282294
/// Execute a command, assert that it succeeds, and return stdout as a string.
283295
fn exec(mut command: impl BorrowMut<Command>) -> anyhow::Result<String> {
284296
let command = command.borrow_mut();

0 commit comments

Comments
 (0)