diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-11-12 09:53:01 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-11-12 09:53:01 +0100 |
commit | 5e8e2f3861dfbc4864490401c5209fbc24df3c29 (patch) | |
tree | 154689fb831593d175dcbb301c7c15ab4b7ffad8 /configure | |
parent | 9d6ad68fa445b5e160a9277c250cf3238c373a3a (diff) | |
download | ffmpeg-5e8e2f3861dfbc4864490401c5209fbc24df3c29.tar.gz |
configure: Hack to treat x32 as x86_64.
Allows shared compilation on x32 with --disable-asm.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -3950,6 +3950,9 @@ case "$arch" in ;; x86) check_64bit x86_32 x86_64 'sizeof(void *) > 4' + # Treat x32 as x64 for now. Note it also needs spic=$shared + test "$subarch" = "x86_32" && check_cpp_condition stddef.h 'defined(__x86_64__)' && + subarch=x86_64 if test "$subarch" = "x86_64"; then spic=$shared fi |