Open kishwarshafin opened 2 years ago
Hi, kishwarshafin
You're right. libksw2
is not compiled. It was an installation error in the version (6091393). It was fixed in the later version. The following commands are used to compile kws2
. It can fix the error.
cd thirdparty/ksw2/ && make && ar -r libksw2.a *.o && cd -
cp thirdparty/ksw2/libksw2.a build/bin
make
Line 75 of src/makefile
shows an extra $
:
LDFLAGS = -pthread -lz $(BUILD_BIN_DIR)/libksw2.a $
This led to the following error:
g++ ../build/obj/./prog/fsa_ol_assemble.o ../build/bin/libfsa.a -o ../build/bin/fsa_ol_assemble -pthread -lz ../build/bin/libksw2.a $ g++: error: $: No such file or directory make: *** [makefile:109: ../build/bin/fsa_ol_assemble] Error 1
Removing the extra $
solve the error. Is this correct?
Thanks, Shujun
@oushujun You are right. It causes the installation error.
Hello,
Installation of PECAT from github is throwing this error:
I believe libksw2 is not being compiled. Any solution to this?