compiliing fasta 3.5 in centos 5.10
1
0
Entering edit mode
9.6 years ago

Hello I'm tying to compile fasta 3.5 on cent os 5.10 32 bit

I have compiled it on ubuntu 14.04 x64 and it works but on this case when I run this command:

make -f ../make/Makefile.linux32 fasta35

I get this error:

make: *** No rule to make target `comp_lib2.c', needed by `comp_mlib2.o'.  Stop.

What's the problem

fasta • 2.3k views
ADD COMMENT
1
Entering edit mode

The error message basically says it cannot find the file 'comp_lib2.c'. Make sure that the file exists in the directory of the Makefile.

ADD REPLY
2
Entering edit mode
9.6 years ago
hpmcwill ★ 1.2k

I am guessing that you are using the build instructions from the distribution or from the website. Please note that the current version of FASTA is 36.3.6f and is part of the FASTA 36 series, which is recommended over the older FASTA 35 releases (see here).

On Linux x86 systems the accelerated versions should be used rather than the traditional code:

  • Makefile.linux32_sse2: use gcc with SSE2 accelerations for 32-bit x86
  • Makefile.linux64_sse2: use gcc with SSE2 accelerations for 64-bit x86 (x86_64)
  • Makefile.linux_icc_sse2: use icc with SSE2 accelerations for 64-bit x86 (x86_64)

You can check that your CPU(s) support the SSE2 instructions by checking the CPU flags:

grep 'sse2' /proc/cpuinfo

If you are reusing a unpacked source distribution, remember to run make -f <makefile> clean-up before trying to start a new compile.

If you have problems you can contact the author using the details provided in the documentation included in the package and on the FASTA web site.

ADD COMMENT

Login before adding your answer.

Traffic: 2013 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6