diff options
author | 2022-02-10 11:41:18 -0800 | |
---|---|---|
committer | 2022-03-07 14:56:32 -0800 | |
commit | 4c4c1be915cc00cb5835cd187ee9382c52bac28a (patch) | |
tree | 45e890661a3a5ce8458392fcf5068daf54ccc017 /rust/testing.go | |
parent | 2d295a2de2cb3553def3f3c1075144092abdeda8 (diff) |
Use single module for clang runtime libraries
The clang prebuilts now provide a single module with per-architecture
variants instead of a module per architecture.
Bug: 220019988
Test: m checkbuild
Change-Id: I39e2cf8ae14edf8510276dab38011afaef85822c
Merged-In: I39e2cf8ae14edf8510276dab38011afaef85822c
Diffstat (limited to 'rust/testing.go')
-rw-r--r-- | rust/testing.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/testing.go b/rust/testing.go index 1b34dfe8e..cb98bed65 100644 --- a/rust/testing.go +++ b/rust/testing.go @@ -88,13 +88,13 @@ func GatherRequiredDepsForTest() string { export_include_dirs: ["libprotobuf-cpp-full-includes"], } cc_library { - name: "libclang_rt.asan-aarch64-android", + name: "libclang_rt.asan", no_libcrt: true, nocrt: true, system_shared_libs: [], } cc_library { - name: "libclang_rt.hwasan_static-aarch64-android", + name: "libclang_rt.hwasan_static", no_libcrt: true, nocrt: true, system_shared_libs: [], |