summaryrefslogtreecommitdiff
path: root/memtrack
diff options
context:
space:
mode:
authorRyan Prichard <rprichard@google.com>2022-08-30 14:35:30 -0700
committerRyan Prichard <rprichard@google.com>2022-08-31 19:18:16 -0700
commiteae38d8b7d397d60aa7319d6cd8933d6505766cb (patch)
treea9887ff0c41dcf207272657e072e575823ab34e6 /memtrack
parent99adf714923c6191c2de9868886fb25814346686 (diff)
downloadextras-eae38d8b7d397d60aa7319d6cd8933d6505766cb.tar.gz
Simplify the memtrack cc_binary deps
The libc, libc++abi, and libdl deps are redundant. The toolchain already switched from libgcc to compiler-rt, so the comment is out-of-date. Bug: http://b/175635923 Test: treehugger Change-Id: Iaeca04946c458f185413a833d42682e7fa0352c7
Diffstat (limited to 'memtrack')
-rw-r--r--memtrack/Android.bp9
1 files changed, 0 insertions, 9 deletions
diff --git a/memtrack/Android.bp b/memtrack/Android.bp
index d04c6ffa..2611029a 100644
--- a/memtrack/Android.bp
+++ b/memtrack/Android.bp
@@ -53,17 +53,8 @@ cc_binary {
static_executable: true,
static_libs: [
- "libc",
"liblog",
- "libc++abi",
- "libdl",
],
stl: "libc++_static",
-
- // Bug: 18389563 - Today, libc++_static and libgcc have duplicate sybols for
- // __aeabi_uidiv(). Allowing multiple definitions lets the build proceed, but
- // updating compiler-rt to be a superset of libgcc will allow this WAR to be
- // removed.
- ldflags: ["-Wl,-z,muldefs"],
}