1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

Enable inline asm in intel compiler on windows.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Matt Oliver 2014-05-03 19:37:53 +10:00 committed by Michael Niedermayer
parent 8b132bb7b9
commit a6b0c0e123

9
configure vendored
View File

@ -4989,10 +4989,11 @@ elif enabled_any msvc icl; then
# (correctly) on icl 13.x. # (correctly) on icl 13.x.
check_cpp_condition "windows.h" "__ICL < 1300 || __ICL >= 1400" && check_cpp_condition "windows.h" "__ICL < 1300 || __ICL >= 1400" &&
add_cflags -Qansi-alias add_cflags -Qansi-alias
# icl will pass the inline asm tests but inline asm is currently # Some inline asm is not compilable in debug
# not supported (build will fail) if enabled debug; then
disabled inline_asm || warn "inline asm disabled due to issues with it in ICL" disable ebp_available
disable inline_asm disable ebx_available
fi
fi fi
fi fi