diff options
| -rw-r--r-- | dex2oat/Android.bp | 2 | ||||
| -rw-r--r-- | oatdump/Android.bp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/dex2oat/Android.bp b/dex2oat/Android.bp index 4fafca9e1b..18548baf7f 100644 --- a/dex2oat/Android.bp +++ b/dex2oat/Android.bp @@ -294,6 +294,8 @@ art_cc_binary { 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 be12c8e406..535acdff62 100644 --- a/oatdump/Android.bp +++ b/oatdump/Android.bp @@ -24,6 +24,8 @@ cc_defaults { shared_libs: ["libcutils"], }, }, + // b/79417743, oatdump 32-bit tests failed with clang lld + use_clang_lld: false, header_libs: [ "art_cmdlineparser_headers", ], |