commit | f81bb657d3bc49550e5a8fa8107b2a21077cd58e | [log] [tgz] |
---|---|---|
author | Hsin-Yi Chen <hsinyichen@google.com> | Tue Apr 07 21:42:19 2020 +0800 |
committer | Hsin-Yi Chen <hsinyichen@google.com> | Fri Apr 10 10:51:24 2020 +0800 |
tree | 4d294410f293c6c3dc8ca8d912e66b9d12ea3aca | |
parent | b54015fa544b5ab2a2a319b95a9d3e384c259210 [diff] |
Do not check ABI for coverage variants Bug: 153119422 Test: make NATIVE_COVERAGE=true out/target/product/generic_x86/lsdump_paths.txt Change-Id: I1cfa1526436d0587b801bd222f1037f743c0528d
diff --git a/cc/cc.go b/cc/cc.go index 4667a3d..e5851d3 100644 --- a/cc/cc.go +++ b/cc/cc.go
@@ -1194,6 +1194,11 @@ return false } + // Coverage builds have extra symbols. + if ctx.mod.isCoverageVariant() { + return false + } + if ctx.ctx.Fuchsia() { return false }