aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2016-01-12 21:40:17 -0800
committerDan Willemsen <dwillemsen@google.com>2016-01-13 13:32:26 -0800
commit415cb0ff1420d0c55950ee471c314815120eb30c (patch)
treed00a2f35e434e978c3b2947246351f2aa88aa54a
parentac5e1cb30fd05bfb10caee517521fd512fc6bd49 (diff)
downloadbuild_soong-415cb0ff1420d0c55950ee471c314815120eb30c.tar.gz
build_soong-415cb0ff1420d0c55950ee471c314815120eb30c.tar.bz2
build_soong-415cb0ff1420d0c55950ee471c314815120eb30c.zip
Remove libgcov for now to fix X86 devices
We should be using libprofile_rt for clang builds, but we only need to add either one if code coverage is enabled. This will be added again when we get more complete support. Bug: 26525326 Change-Id: Ic3da07c896be266bb35747a79c184e3d5bb8df70
-rw-r--r--cc/cc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/cc.go b/cc/cc.go
index c8341d4c..f324c748 100644
--- a/cc/cc.go
+++ b/cc/cc.go
@@ -1004,7 +1004,7 @@ func (c *CCLinked) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDe
if ctx.Device() {
// libgcc and libatomic have to be last on the command line
- depNames.LateStaticLibs = append(depNames.LateStaticLibs, "libgcov", "libatomic")
+ depNames.LateStaticLibs = append(depNames.LateStaticLibs, "libatomic")
if !Bool(c.Properties.No_libgcc) {
depNames.LateStaticLibs = append(depNames.LateStaticLibs, "libgcc")
}