ld_classic: can't locate file for: -lcrt0.o
collect2: ld returned 1 exit status
make: *** [muscle] Error 1
In this case, I was compiling MUSCLE, a multiple alignment program.
The solution is to track the -static flag down in your Makefile, and remove it. GCC/OSX does NOT like -static.
6 comments:
I just fixed this in another bioinformatics app. (nhPhyml) by removing the -static flag.
Confirmed.
Many thanks.
Fixed my problems with Augustus (gene predictor) too. Thanks
THANK YOU!
Excellent, thanks for the trick
Post a Comment