diff options
author | Robert Bocchino <bocchino@illinois.edu> | 2006-01-06 22:51:19 +0000 |
---|---|---|
committer | Robert Bocchino <bocchino@illinois.edu> | 2006-01-06 22:51:19 +0000 |
commit | cdd229a82e25ae0769425703ce5fd51b20448df3 (patch) | |
tree | 21758ca9b081caa2a04274cc281687b82e015942 /llvm/projects/sample | |
parent | 19cbea15d48d8f28f682a50789061172b102d667 (diff) | |
download | bcm5719-llvm-cdd229a82e25ae0769425703ce5fd51b20448df3.tar.gz bcm5719-llvm-cdd229a82e25ae0769425703ce5fd51b20448df3.zip |
Fixed Makefile so it does, indeed, build a dynamic library.
llvm-svn: 25135
Diffstat (limited to 'llvm/projects/sample')
-rw-r--r-- | llvm/projects/sample/lib/sample/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/projects/sample/lib/sample/Makefile b/llvm/projects/sample/lib/sample/Makefile index ba2da3d03ca..140d7d6703d 100644 --- a/llvm/projects/sample/lib/sample/Makefile +++ b/llvm/projects/sample/lib/sample/Makefile @@ -9,7 +9,8 @@ LEVEL=../.. # Give the name of a library. This will build a dynamic version. # LIBRARYNAME=sample -#SHARED_LIBRARY=1 +SHARED_LIBRARY=1 +LOADABLE_MODULE=1 #DONT_BUILD_RELINKED=1 #ARCHIVE_LIBRARY=1 |