diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-10-14 17:50:42 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-10-14 17:50:42 +0000 |
commit | 487a54d71daf338e93281758510dffce051842c1 (patch) | |
tree | f58ef3274bace947f7edc5d9ca39e47d33e22f23 /configure | |
parent | 0e7eed09ce0c7387b2b5157dc51dc339e1e39086 (diff) | |
download | ffmpeg-487a54d71daf338e93281758510dffce051842c1.tar.gz |
cross compiling support
Originally committed as revision 1034 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 |