diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-23 15:30:30 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-23 15:30:30 +0000 |
commit | 83e5e2801f4a0f10caca7db589396ef257fb985b (patch) | |
tree | d4e35306be311a9b097fc615f4ada0c94beb1964 /llvm/projects/sample | |
parent | 282e13c9422613538da2a02913eab4b32fa2143b (diff) | |
download | bcm5719-llvm-83e5e2801f4a0f10caca7db589396ef257fb985b.tar.gz bcm5719-llvm-83e5e2801f4a0f10caca7db589396ef257fb985b.zip |
Fix nightly build by avoiding shared library construction.
llvm-svn: 17187
Diffstat (limited to 'llvm/projects/sample')
-rw-r--r-- | llvm/projects/sample/lib/sample/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/projects/sample/lib/sample/Makefile b/llvm/projects/sample/lib/sample/Makefile index 3044926fe1f..ba2da3d03ca 100644 --- a/llvm/projects/sample/lib/sample/Makefile +++ b/llvm/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. |