SeqPrep
SeqPrep copied to clipboard
installation problem
Hi, I am trying to install SeqPrep in my Dell server. But It is giving error as
gcc -c -Wall -Werror -O0 -g SeqPrep.c -o SeqPrep.o SeqPrep.c: In function ‘main’: SeqPrep.c:136:8: error: variable ‘print_overhang’ set but not used [-Werror=unused-but-set-variable] cc1: all warnings being treated as errors make: *** [SeqPrep.o] Error 1
Any suggestion to overcome this situaion.
Yep, edit the Makefile, and delete "-Werror"
On Apr 23, 2013, at 11:50 PM, sourav8888 [email protected] wrote:
Hi, I am trying to install SeqPrep in my Dell server. But It is giving error as
gcc -c -Wall -Werror -O0 -g SeqPrep.c -o SeqPrep.o SeqPrep.c: In function ‘main’: SeqPrep.c:136:8: error: variable ‘print_overhang’ set but not used [-Werror=unused-but-set-variable] cc1: all warnings being treated as errors make: *** [SeqPrep.o] Error 1
Any suggestion to overcome this situaion.
— Reply to this email directly or view it on GitHub.
but ... how about this one
cc -c -Wall -O0 -g -std=c99 SeqPrep.c -o SeqPrep.o In file included from SeqPrep.c:10:0: utils.h:7:18: fatal error: zlib.h: No such file or directory #include <zlib.h> ^ compilation terminated. make: *** [SeqPrep.o] Error 1
Looks like you need to install libz on your system. On Sun, Aug 27, 2017 at 1:20 AM SuperPz [email protected] wrote:
but ... how about this one
cc -c -Wall -O0 -g -std=c99 SeqPrep.c -o SeqPrep.o In file included from SeqPrep.c:10:0: utils.h:7:18: fatal error: zlib.h: No such file or directory #include <zlib.h> ^ compilation terminated.
make: *** [SeqPrep.o] Error 1
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/jstjohn/SeqPrep/issues/10#issuecomment-325184232, or mute the thread https://github.com/notifications/unsubscribe-auth/AAcBBgZwu3ZQFIffAP7PP7wI_-MoZIxtks5scSbpgaJpZM4AmnnW .
Hi!
Just wondering if I can just ask the same problem like them above in this thread.
How about this -->
cc -c -Wall -O0 -g -std=c99 SeqPrep.c -o SeqPrep.o process_begin: CreateProcess(NULL, cc -c -Wall -O0 -g -std=c99 SeqPrep.c -o SeqPrep.o, ...) failed. make (e=2): The system cannot find the file specified. make: *** [SeqPrep.o] Error 2
And does Error 1 and Error 2 differ?
Thank you for your time!