This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Compiling ssh-1.1.26 w/ egcs-1.1.2


	This error is caused by conflicting assumptions between recent
versions of GCC/EGCS and GMP.  GCC/EGCS operates in AIX common-mode by
default -- consistently with IBM's XLC compiler.  GMP assumes that it is
being compiled either using POWER architecture or PowerPC architecture.

	Your choices are: change the Makefile so that GCC is invoked as
POWER (-mcpu=power) or PowerPC (-mcpu=powerpc) architecture if your
computing environment is completely one architecture or the other, OR
modify GMP so that it uses the C versions of multiprecision arithmetic and
"long long" routines instead of trying to substitute assembly language
which assumes one architecture or the other.

David


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]