diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2005-01-11 04:33:32 +0000 | 
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2005-01-11 04:33:32 +0000 | 
| commit | 134f02d0c78a667d6a262bc1dbb202cd2687a89f (patch) | |
| tree | 6afceec9b7dd0d3c512653ed1bd20780d00b9908 | |
| parent | 9d7cf998ca7de5366e34971c00b5d0e2e16a08d4 (diff) | |
| download | bcm5719-llvm-134f02d0c78a667d6a262bc1dbb202cd2687a89f.tar.gz bcm5719-llvm-134f02d0c78a667d6a262bc1dbb202cd2687a89f.zip | |
Add the LOADABLE_MODULE=1 directive to indicate that this shared library is
intended to be a dlopenable module and not a "plain" shared library.
llvm-svn: 19456
| -rw-r--r-- | llvm/lib/Transforms/Hello/Makefile | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/llvm/lib/Transforms/Hello/Makefile b/llvm/lib/Transforms/Hello/Makefile index d9886a95e55..ccd9caff16a 100644 --- a/llvm/lib/Transforms/Hello/Makefile +++ b/llvm/lib/Transforms/Hello/Makefile @@ -10,6 +10,7 @@  LEVEL = ../../..  LIBRARYNAME = LLVMHello  SHARED_LIBRARY = 1 +LOADABLE_MODULE = 1  include $(LEVEL)/Makefile.common | 

