summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2015-12-04 15:50:00 -0800
committerDan Willemsen <dwillemsen@google.com>2015-12-04 15:51:10 -0800
commite368a1fd041a77437183054ff729e9cc79eb76f3 (patch)
tree452533a5e24404b5337df3e47b80850a7494f14c
parent47a9376d513493a5196a5a83bf136924d65e30f1 (diff)
downloadexternal_libcxx-e368a1fd041a77437183054ff729e9cc79eb76f3.tar.gz
external_libcxx-e368a1fd041a77437183054ff729e9cc79eb76f3.tar.bz2
external_libcxx-e368a1fd041a77437183054ff729e9cc79eb76f3.zip
soong: Use new linker file properties
So that dependencies are set up properly Change-Id: I027eb0f69d85a8afb40b0bc30719ab47ea6c8874
-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: {