From: Oscar Fuentes Date: Wed, 22 Dec 2010 08:30:17 +0000 (+0000) Subject: Fixes file extension for loadable modules on OS X. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=711042839cab1948366dfc69d1b866cc1a103444;p=oota-llvm.git Fixes file extension for loadable modules on OS X. Patch by Wesley Peck! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122395 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake index d03b3e04b0e..fdf1df0c67d 100755 --- a/cmake/modules/AddLLVM.cmake +++ b/cmake/modules/AddLLVM.cmake @@ -36,7 +36,13 @@ ${name} ignored.") add_custom_target(${name}) else() llvm_process_sources( ALL_FILES ${ARGN} ) - add_library( ${name} MODULE ${ALL_FILES} ) + if (MODULE) + set(libkind MODULE) + else() + set(libkind SHARED) + endif() + + add_library( ${name} ${libkind} ${ALL_FILES} ) set_target_properties( ${name} PROPERTIES PREFIX "" ) if (APPLE)