[Lldb-commits] [PATCH] D11840: Update to D11825.
Chaoren Lin via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 7 11:54:46 PDT 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL244343: Update to D11825. (authored by chaoren).
Changed prior to commit:
http://reviews.llvm.org/D11840?vs=31530&id=31536#toc
Repository:
rL LLVM
http://reviews.llvm.org/D11840
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
@@ -109,7 +109,11 @@
endif()
elseif( ANDROID_ABI STREQUAL "mips" )
# http://b.android.com/182094
- set( ANDROID_LINKER_FLAGS "${ANDROID_LINKER_FLAGS} -latomic" )
+ list( FIND LLDB_SYSTEM_LIBS atomic index )
+ if( index EQUAL -1 )
+ list( APPEND LLDB_SYSTEM_LIBS atomic )
+ set( LLDB_SYSTEM_LIBS ${LLDB_SYSTEM_LIBS} CACHE INTERNAL "" FORCE )
+ endif()
endif()
if( NOT LLVM_BUILD_STATIC )
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D11840.31536.patch
Type: text/x-patch
Size: 604 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150807/6505b843/attachment.bin>
More information about the lldb-commits
mailing list