diff options
author | Dan Willemsen <dwillemsen@google.com> | 2016-01-12 21:40:17 -0800 |
---|---|---|
committer | Dan Willemsen <dwillemsen@google.com> | 2016-01-13 13:32:26 -0800 |
commit | 415cb0ff1420d0c55950ee471c314815120eb30c (patch) | |
tree | d00a2f35e434e978c3b2947246351f2aa88aa54a /cc | |
parent | ac5e1cb30fd05bfb10caee517521fd512fc6bd49 (diff) | |
download | build_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
Diffstat (limited to 'cc')
-rw-r--r-- | cc/cc.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") } |