Yeah, after installing gcc4.8, problem has been resolved.
Thanks to all,
• 0 views
•
link
Dear ABYSS USERS,
I got following error during ABYSS installation:
make[1]: *** [konnector-konnector.o] Error 1
make: *** [install-recursive] Error 1
I am already on root. What should I do now?
Regards,
Waqasuddin Khan
ABySS 1.5.2 does not compile with GCC 4.1, unfortunately. The next release of ABySS will compile with GCC 4.1. Try installing a newer compiler if possible. Try
sudo yum install gcc44 gcc44-c++
./configure CC=gcc44 CXX=g++44
make
Yeah, after installing gcc4.8, problem has been resolved.
Thanks to all,
Great. I'm glad that you got GCC 4.8 working. It might also be possible to compile using GCC 4.1 by disabling warnings-as-errors. The default value of AM_CXXFLAGS is AM_CXXFLAGS = -Wall -Wextra -Werror
./configure
make AM_CXXFLAGS=-Wall
Thanks, I will keep in mind for future use
Log in to answer this question.
The relevant portion of error is before what you posted, please provide at 10 significant lines from the output plus the output of
uname -a,gcc -v, the version of the software you downloaded. I guess you are running make? you don't need to be root to run make, only make install needs root to install into standard location.The outputs are as follows:
uname -a:gcc -v:ABYSS version: 1.5.2
The output of make (not full but just some lasy lines before error appears):
Kindly guide me, any idea?
Regards,
Waqasuddin Khan
Not that I have ever built this software from source, but... I don't really see the error source right here, I think if you just try
make konnector-konnector.oand post the full output of this target one could see it.konnector-konnector.oshould be the name of the target that fails.ABySS 1.5.2 does not compile with GCC 4.1, unfortunately. The next release of ABySS will compile with GCC 4.1. Try installing a newer compiler if possible. Try