From 47b67327664c7bdc80ca447ba3c790f4bd898db7 Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Tue, 13 Jun 2023 14:54:42 +0200 Subject: [PATCH] add another check for empty `cc`s --- src/bootstrap/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index d7f0205cbed..904f27f472d 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -1792,7 +1792,7 @@ note: if you're sure you want to do this, please open an issue as to why. In the cmd.arg("--adb-path").arg("adb"); cmd.arg("--adb-test-dir").arg(ADB_TEST_DIR); - if target.contains("android") { + if target.contains("android") && !builder.config.dry_run() { // Assume that cc for this target comes from the android sysroot cmd.arg("--android-cross-path") .arg(builder.cc(target).parent().unwrap().parent().unwrap());