summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2015-12-05 00:14:40 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-12-05 00:14:40 +0000
commitacfd3d18a0e30c08960001c9ca4c3b08342e9631 (patch)
tree452533a5e24404b5337df3e47b80850a7494f14c
parent378421aba852ef513e795db7e8e8df716eabfd16 (diff)
parente368a1fd041a77437183054ff729e9cc79eb76f3 (diff)
downloadexternal_libcxx-acfd3d18a0e30c08960001c9ca4c3b08342e9631.tar.gz
external_libcxx-acfd3d18a0e30c08960001c9ca4c3b08342e9631.tar.bz2
external_libcxx-acfd3d18a0e30c08960001c9ca4c3b08342e9631.zip
soong: Use new linker file properties
am: e368a1fd04 * commit 'e368a1fd041a77437183054ff729e9cc79eb76f3': soong: Use new linker file properties
-rw-r--r--Android.bp8
1 files changed, 3 insertions, 5 deletions
diff --git a/Android.bp b/Android.bp
index 1364e4636..81670e3dd 100644
--- a/Android.bp
+++ b/Android.bp
@@ -88,11 +88,9 @@ cc_library_shared {
},
},
darwin: {
- ldflags: [
- "-Wl,-unexported_symbols_list,${SrcDir}/external/libcxx/lib/libc++unexp.exp",
- "-Wl,-force_symbols_not_weak_list,${SrcDir}/external/libcxx/lib/notweak.exp",
- "-Wl,-force_symbols_weak_list,${SrcDir}/external/libcxx/lib/weak.exp",
- ],
+ unexported_symbols_list: "lib/libc++unexp.exp",
+ force_symbols_not_weak_list: "lib/notweak.exp",
+ force_symbols_weak_list: "lib/weak.exp",
},
linux: {