aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYi Kong2019-05-06 22:13:01 -0500
committerandroid-build-merger2019-05-06 22:13:01 -0500
commit29ae56ede9936db1d263eb90dbf9da9af0017651 (patch)
tree284a32fc46ded2589143b2a07ccbeb8e781e19cb
parenta3898089ba59d4b014a1da731413c1e91a7f29d3 (diff)
parent3277c39c6b4b27ec20508e999adce345ae2b1839 (diff)
downloadplatform-build-soong-29ae56ede9936db1d263eb90dbf9da9af0017651.tar.gz
platform-build-soong-29ae56ede9936db1d263eb90dbf9da9af0017651.tar.xz
platform-build-soong-29ae56ede9936db1d263eb90dbf9da9af0017651.zip
Merge "Exclude libgcc_stripped wherever libgcc is excluded"
am: 3277c39c6b Change-Id: Idbe82ea4a3e5cb9a9a7c194dd0a4d8a282d56c03
-rw-r--r--cc/config/global.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cc/config/global.go b/cc/config/global.go
index 0a7d9840..24075d9f 100644
--- a/cc/config/global.go
+++ b/cc/config/global.go
@@ -84,6 +84,7 @@ var (
84 "-Wl,--fatal-warnings", 84 "-Wl,--fatal-warnings",
85 "-Wl,--no-undefined-version", 85 "-Wl,--no-undefined-version",
86 "-Wl,--exclude-libs,libgcc.a", 86 "-Wl,--exclude-libs,libgcc.a",
87 "-Wl,--exclude-libs,libgcc_stripped.a",
87 } 88 }
88 89
89 deviceGlobalLldflags = append(ClangFilterUnknownLldflags(deviceGlobalLdflags), 90 deviceGlobalLldflags = append(ClangFilterUnknownLldflags(deviceGlobalLdflags),