summaryrefslogtreecommitdiff
path: root/projects/sample
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-10-23 15:30:30 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-10-23 15:30:30 +0000
commit1118441d7ab589358c8c8c8a87cb0e922b5a0522 (patch)
treebe0cacb50751f0c72ed0d783382c630ba30896fa /projects/sample
parentc64b2b350d21ff290f7f9d3a9cf124e0f8930bd5 (diff)
downloadllvm-1118441d7ab589358c8c8c8a87cb0e922b5a0522.tar.gz
llvm-1118441d7ab589358c8c8c8a87cb0e922b5a0522.tar.bz2
llvm-1118441d7ab589358c8c8c8a87cb0e922b5a0522.tar.xz
Fix nightly build by avoiding shared library construction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17187 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects/sample')
-rw-r--r--projects/sample/lib/sample/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/projects/sample/lib/sample/Makefile b/projects/sample/lib/sample/Makefile
index 3044926fe1..ba2da3d03c 100644
--- a/projects/sample/lib/sample/Makefile
+++ b/projects/sample/lib/sample/Makefile
@@ -8,8 +8,10 @@ LEVEL=../..
#
# Give the name of a library. This will build a dynamic version.
#
-SHARED_LIBRARY=1
LIBRARYNAME=sample
+#SHARED_LIBRARY=1
+#DONT_BUILD_RELINKED=1
+#ARCHIVE_LIBRARY=1
#
# Include Makefile.common so we know what to do.