You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
Fix previously broken x86_64 check, simplifying it in the process.
Originally committed as revision 12475 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
2
configure
vendored
2
configure
vendored
@@ -1085,7 +1085,7 @@ case "$arch" in
|
|||||||
enable fast_unaligned
|
enable fast_unaligned
|
||||||
canon_arch="`$cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
|
canon_arch="`$cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
|
||||||
if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then
|
if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then
|
||||||
if [ -z "`echo $CFLAGS | grep -q -- -m32`" ]; then
|
if ! echo $CFLAGS | grep -q -- -m32; then
|
||||||
arch="x86_64"
|
arch="x86_64"
|
||||||
enable fast_64bit
|
enable fast_64bit
|
||||||
fi
|
fi
|
||||||
|
Reference in New Issue
Block a user