zhaoyanswill / RAPSearch2

Reduced Alphabet based Protein similarity Search
40 stars 15 forks source link

compilation fails due to typo in Makefile #2

Closed ctberthiaume closed 10 years ago

ctberthiaume commented 10 years ago

There's a simple typo in the Makefile for version 2.17 where the wrong INC and LIBS lines are commented out. It looks like the lines relative to the developer's home directory were accidentally left uncommented instead of the lines relative to the Src directory. After switching the commented lines compilation completes OK. Here's what the beginning of the install script output looks like, up to the first error.

RAPSearch installer
rm -f *.o rapsearch prerapsearch
g++ -c -O3 -w  HashSearch.cpp -o HashSearch.o -I ~/include
HashSearch.cpp:21:41: error: boost/chrono/thread_clock.hpp: No such file or directory
zhaoyanswill commented 10 years ago

Thank you very much, Chris! I've updated the Makefile.

On 04/14/2014 04:20 PM, Chris Berthiaume wrote:

There's a simple typo in the Makefile for version 2.17 where the wrong INC and LIBS lines are commented out. It looks like the lines relative to the developer's home directory were accidentally left uncommented instead of the lines relative to the Src directory. After switching the commented lines compilation completes OK. Here's what the beginning of the install script output looks like, up to the first error.

RAPSearch installer rm -f *.o rapsearch prerapsearch g++ -c -O3 -w HashSearch.cpp -o HashSearch.o -I ~/include HashSearch.cpp:21:41: error: boost/chrono/thread_clock.hpp: No such file or directory

— Reply to this email directly or view it on GitHub https://github.com/zhaoyanswill/RAPSearch2/issues/2.