[llvm-commits] [test-suite] r69120 - /test-suite/trunk/External/HMMER/Makefile

Dan Gohman gohman at apple.com
Tue Apr 14 17:32:45 PDT 2009


Author: djg
Date: Tue Apr 14 19:32:41 2009
New Revision: 69120

URL: http://llvm.org/viewvc/llvm-project?rev=69120&view=rev
Log:
HMMER uses pthreads, so it needs -lpthread.

Modified:
    test-suite/trunk/External/HMMER/Makefile

Modified: test-suite/trunk/External/HMMER/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/HMMER/Makefile?rev=69120&r1=69119&r2=69120&view=diff

==============================================================================
--- test-suite/trunk/External/HMMER/Makefile (original)
+++ test-suite/trunk/External/HMMER/Makefile Tue Apr 14 19:32:41 2009
@@ -6,6 +6,8 @@
 SourceDir := $(HMMER_ROOT)
 
 CPPFLAGS = -DSSE2
+LIBS +=    -lpthread
+LDFLAGS += -lpthread
 
 ifdef LARGE_PROBLEM_SIZE
 RUN_OPTIONS = --fixed 400 --cpu 1 --num 200000 --seed 1158818515 $(HMMER_ROOT)/globin.hmm





More information about the llvm-commits mailing list