diff options
author | Diego Biurrun <diego@biurrun.de> | 2018-03-08 11:47:04 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2018-03-08 14:02:30 +0100 |
commit | dd7e63af93b2430b5d42b87a966160c66736342c (patch) | |
tree | 574d2e5804eb1a8b925d63c1106b91b3bdcd26fc | |
parent | 80a4e6a46f21256e9bf508ead686563616945ad5 (diff) | |
download | ffmpeg-streaming-dd7e63af93b2430b5d42b87a966160c66736342c.zip ffmpeg-streaming-dd7e63af93b2430b5d42b87a966160c66736342c.tar.gz |
configure: Restore original endianness test
Previously the bit pattern for the endianness test was declared as a
global, instead of a local, variable. This ensures that the pattern
appears unchanged in the object file and is not optimized out.
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4211,7 +4211,10 @@ done check_cc pragma_deprecated "" '_Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")' -require_cc "endian test" "" "unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E'" +# The global variable ensures the bits appear unchanged in the object file. +test_cc <<EOF || die "endian test failed" +unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E'; +EOF od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian check_gas() { |