[PATCH] D47848: [Support] Link libzircon.so when building LLVM for Fuchsia

Petr Hosek via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 7 14:05:50 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL334232: [Support] Link libzircon.so when building LLVM for Fuchsia (authored by phosek, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D47848?vs=150209&id=150403#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D47848

Files:
  llvm/trunk/lib/Support/CMakeLists.txt


Index: llvm/trunk/lib/Support/CMakeLists.txt
===================================================================
--- llvm/trunk/lib/Support/CMakeLists.txt
+++ llvm/trunk/lib/Support/CMakeLists.txt
@@ -33,6 +33,9 @@
   if( UNIX AND NOT (BEOS OR HAIKU) )
     set(system_libs ${system_libs} m)
   endif()
+  if( FUCHSIA )
+    set(system_libs ${system_libs} zircon)
+  endif()
 endif( MSVC OR MINGW )
 
 add_llvm_library(LLVMSupport


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D47848.150403.patch
Type: text/x-patch
Size: 431 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180607/36e17bd4/attachment.bin>


More information about the llvm-commits mailing list