Do not use clang lld for oatdump tests
Bug: 79417743
Test: HOST_PREFER_32_BIT=true m -j32 test-art-host-gtest-oatdump_app_test
Change-Id: If217972d4983ef8c3425afb70cc59a227e576ee3
diff --git a/dex2oat/Android.bp b/dex2oat/Android.bp
index 4fafca9..18548ba 100644
--- a/dex2oat/Android.bp
+++ b/dex2oat/Android.bp
@@ -294,6 +294,8 @@
use_clang_lld: true,
},
},
+ // b/79417743, oatdump 32-bit tests failed with clang lld
+ use_clang_lld: false,
ldflags: [
// We need this because GC stress mode makes use of
// _Unwind_GetIP and _Unwind_Backtrace and the symbols are also
diff --git a/oatdump/Android.bp b/oatdump/Android.bp
index be12c8e..535acdf 100644
--- a/oatdump/Android.bp
+++ b/oatdump/Android.bp
@@ -24,6 +24,8 @@
shared_libs: ["libcutils"],
},
},
+ // b/79417743, oatdump 32-bit tests failed with clang lld
+ use_clang_lld: false,
header_libs: [
"art_cmdlineparser_headers",
],