[Lldb-commits] [PATCH] D15379: Switch to gold linker on android x86, x86_64, arm
Tamas Berghammer via lldb-commits
lldb-commits at lists.llvm.org
Thu Dec 10 03:06:04 PST 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL255240: Switch to gold linker on android x86, x86_64, arm (authored by tberghammer).
Changed prior to commit:
http://reviews.llvm.org/D15379?vs=42295&id=42407#toc
Repository:
rL LLVM
http://reviews.llvm.org/D15379
Files:
lldb/trunk/cmake/platforms/Android.cmake
Index: lldb/trunk/cmake/platforms/Android.cmake
===================================================================
--- lldb/trunk/cmake/platforms/Android.cmake
+++ lldb/trunk/cmake/platforms/Android.cmake
@@ -121,6 +121,13 @@
endif()
endif()
+# Use gold linker and enable safe ICF in case of x86, x86_64 and arm
+if ( ANDROID_ABI STREQUAL "x86" OR
+ ANDROID_ABI STREQUAL "x86_64" OR
+ ANDROID_ABI STREQUAL "armeabi")
+ set( ANDROID_LINKER_FLAGS "${ANDROID_LINKER_FLAGS} -fuse-ld=gold -Wl,--icf=safe" )
+endif()
+
if( NOT LLVM_BUILD_STATIC )
# PIE is required for API 21+ so we enable it if we're not statically linking
# unfortunately, it is not supported before API 16 so we need to do something
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D15379.42407.patch
Type: text/x-patch
Size: 719 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20151210/2300d7c4/attachment.bin>
More information about the lldb-commits
mailing list