diff --git a/cc/cc.go b/cc/cc.go index 02014049b..fdfc221ab 100644 --- a/cc/cc.go +++ b/cc/cc.go @@ -1195,6 +1195,11 @@ func (ctx *moduleContextImpl) shouldCreateSourceAbiDump() bool { return false } + // Coverage builds have extra symbols. + if ctx.mod.isCoverageVariant() { + return false + } + if ctx.ctx.Fuchsia() { return false }