From: eb Date: Wed, 18 Feb 2009 03:05:58 +0000 (+0000) Subject: use 4.3 versions of ppu cross-compilers if we've got them X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=14e59a3bedfdbd2835c3053cb0be26131bafb9d1;p=debian%2Fgnuradio use 4.3 versions of ppu cross-compilers if we've got them git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10460 221aa14e-8319-0410-a670-987f0aec2ac5 --- diff --git a/configure-cell-cross b/configure-cell-cross index 6b65982b..ea4d1e72 100755 --- a/configure-cell-cross +++ b/configure-cell-cross @@ -33,9 +33,22 @@ cell_root=/mnt/cell-root python_version=2.5 compiler_includes="-isystem ${cell_root}/usr/include" +# check for 4.3 versions of cross-compilers and use them if we've got them +if which ppu32-gcc43 >/dev/null 2>&1; then + ppu32_gcc=ppu32-gcc43 +else + ppu32_gcc=ppu32-gcc +fi + +if which ppu32-g++43 >/dev/null 2>&1; then + ppu32_gxx=ppu32-g++43 +else + ppu32_gxx=ppu32-g++ +fi + $scriptdir/configure \ - CC=${arch}32-gcc \ - CXX=${arch}32-g++ \ + CC=${ppu32_gcc} \ + CXX=${ppu32_gxx} \ AR=${arch}-ar \ NM=${arch}-nm \ RANLIB=${arch}-ranlib \