From 6b2b0136a95ee55c955380966069af0de28ec34e Mon Sep 17 00:00:00 2001 From: Robert Bocchino Date: Fri, 6 Jan 2006 22:51:19 +0000 Subject: [PATCH] Fixed Makefile so it does, indeed, build a dynamic library. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25135 91177308-0d34-0410-b5e6-96231b3b80d8 --- projects/sample/lib/sample/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/sample/lib/sample/Makefile b/projects/sample/lib/sample/Makefile index ba2da3d03ca..140d7d6703d 100644 --- a/projects/sample/lib/sample/Makefile +++ b/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 -- 2.34.1