From 487a54d71daf338e93281758510dffce051842c1 Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Mon, 14 Oct 2002 17:50:42 +0000 Subject: [PATCH] cross compiling support Originally committed as revision 1034 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/configure b/configure index 19527df9d3..2029edcd96 100755 --- a/configure +++ b/configure @@ -267,6 +267,8 @@ ar="${cross_prefix}${ar}" ranlib="${cross_prefix}${ranlib}" strip="${cross_prefix}${strip}" +if test -z "$cross_prefix" ; then + # --- # big/little endian test cat > $TMPC << EOF @@ -283,6 +285,15 @@ else echo big/little test failed fi +else + +# if cross compiling, cannot launch a program, so make a static guess +if test "$cpu" = "powerpc" -o "$cpu" = "mips" ; then + bigendian="yes" +fi + +fi + # --- # check availability of some header files