Hello everyone, I am trying to cross-compile zaptel for an x86_64 (AMD) processor. It seems like 64 bit support is not supported: zaptel.c:1: sorry, unimplemented: 64-bit mode not compiled in The full log from the build is here: http://www.krisk.org/asterisk/zaptel-build-errors I am pretty sure that I have set all possible Makefile variables to support cross compiling, but it's possible I may have missed something. Any ideas? Thanks! -- Kristian Kielhofner
I don't know this error, but i have asterisk and zaptel running on an opteron for ages now, so its certainly possible. Don't give up, (or i will send the capt.) :p Cheers, Zoa. Kristian Kielhofner wrote:> Hello everyone, > > I am trying to cross-compile zaptel for an x86_64 (AMD) > processor. It seems like 64 bit support is not supported: > > zaptel.c:1: sorry, unimplemented: 64-bit mode not compiled in > > The full log from the build is here: > > http://www.krisk.org/asterisk/zaptel-build-errors > > I am pretty sure that I have set all possible Makefile variables > to support cross compiling, but it's possible I may have missed > something. > > Any ideas? > > Thanks! >
Kristian Kielhofner wrote:> Hello everyone, > > I am trying to cross-compile zaptel for an x86_64 (AMD) processor. > It seems like 64 bit support is not supported: > > zaptel.c:1: sorry, unimplemented: 64-bit mode not compiled in >That error is from gcc, not zaptel. You're trying to compile 64bit with a 32bit gcc - use a 64bit or 32/64bit cross compiler. Also make sure you have a 64bit binutils. Tony