0

我想编译以下程序来对齐fasta序列,该程序可用于:

http://compbio.cs.princeton.edu/mems/

我已经下载了一个名为 sparseMEM 的 zip 文件并在 Ubuntu Linux 中下载了 g++,在创建的目录中有一个 Makefile 存档,所以我尝试用 make 编译。问题是我收到以下错误:

g++ -lpthread -O3 -DSIXTYFOURBITS mummer.o qsufsort.o sparseSA.o fasta.o -o mummer
mummer.o: In function `main':
mummer.cpp:(.text.startup+0x480): undefined reference to `pthread_create'
mummer.cpp:(.text.startup+0x4a8): undefined reference to `pthread_join'
sparseSA.o: In function `sparseSA::MEM(std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, std::vector<match_t, std::allocator<match_t> >&, int, bool, int)':
sparseSA.cpp:(.text+0x3bbc): undefined reference to `pthread_create'
sparseSA.cpp:(.text+0x3be0): undefined reference to `pthread_join'
collect2: ld returned 1 exit status
make: *** [mummer] Error 1

我怎样才能让它运行?

如果有人知道如何测试这个程序,那就太好了

谢谢

4

1 回答 1

0

对于 Linux,您需要-pthread而不是-lpthread.

于 2013-11-02T15:18:42.003 回答