Hi! > The patch is to provide support for power little endian architecture. > The ./configure command fails when this is not taken care on ppc64le > machines. > > Signed-off-by: Anasuya M Shankar <[email protected]> > > --- config.guess.orig 2014-01-14 17:21:55.601214002 +0530 > +++ config.guess 2014-01-14 17:22:13.746971128 +0530 > @@ -952,6 +952,9 @@ EOF > ppc64:Linux:*:*) > echo powerpc64-unknown-linux-gnu > exit ;; > + ppc64le:Linux:*:*) > + echo powerpc64le-unknown-linux-gnu > + exit ;; > ppc:Linux:*:*) > echo powerpc-unknown-linux-gnu > exit ;;
File config.guess is autogenerated by the autotools and is not part of the git tree. If it's unable to find your host you should send a patch to GNU automake. Or update to latest automake and regenerate the config.guess if automake supports it allready. Meanwhile you can fix that by passing correct --host and --build to the configure script. -- Cyril Hrubis [email protected] ------------------------------------------------------------------------------ CenturyLink Cloud: The Leader in Enterprise Cloud Services. Learn Why More Businesses Are Choosing CenturyLink Cloud For Critical Workloads, Development Environments & Everything In Between. Get a Quote or Start a Free Trial Today. http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
