diff options
author | Colin Cross <ccross@android.com> | 2017-03-22 17:10:29 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2017-03-22 17:10:29 -0700 |
commit | dc03a8407e24b5524c0e9fc96336620815516991 (patch) | |
tree | d9b3ad7ee371837c1624367788dc6829a513af5d | |
parent | e28c09850483089c711c7635a014963bd88a329a (diff) | |
download | build_soong-dc03a8407e24b5524c0e9fc96336620815516991.tar.gz build_soong-dc03a8407e24b5524c0e9fc96336620815516991.tar.bz2 build_soong-dc03a8407e24b5524c0e9fc96336620815516991.zip |
Remove -Wl,--allow-shlib-undefined from arm64
Hopefully this isn't needed any more.
Test: m -j checkbuild
Change-Id: I8cd1ef21c37bb85a322674532b3cd6816280da67
-rw-r--r-- | cc/config/arm64_device.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cc/config/arm64_device.go b/cc/config/arm64_device.go index fe47ddfc..23186e76 100644 --- a/cc/config/arm64_device.go +++ b/cc/config/arm64_device.go @@ -66,9 +66,6 @@ var ( "-fuse-ld=gold", "-Wl,--icf=safe", "-Wl,--no-undefined-version", - - // Disable transitive dependency library symbol resolving. - "-Wl,--allow-shlib-undefined", } arm64Cppflags = []string{ |