diff options
author | Matt Oliver <protogonoi@gmail.com> | 2014-05-03 19:37:53 +1000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-04 03:26:40 +0200 |
commit | a6b0c0e123f692f074899768db85e150726d9dc2 (patch) | |
tree | 07f6e736696702dd15804f7cb160d2704ea284f2 /configure | |
parent | 8b132bb7b97091524ba7ff8d500afbc5e2a8a30a (diff) | |
download | ffmpeg-a6b0c0e123f692f074899768db85e150726d9dc2.tar.gz |
Enable inline asm in intel compiler on windows.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -4989,10 +4989,11 @@ elif enabled_any msvc icl; then # (correctly) on icl 13.x. check_cpp_condition "windows.h" "__ICL < 1300 || __ICL >= 1400" && add_cflags -Qansi-alias - # icl will pass the inline asm tests but inline asm is currently - # not supported (build will fail) - disabled inline_asm || warn "inline asm disabled due to issues with it in ICL" - disable inline_asm + # Some inline asm is not compilable in debug + if enabled debug; then + disable ebp_available + disable ebx_available + fi fi fi |