[FFmpeg-cvslog] Enable inline asm in intel compiler on windows.

Matt Oliver git at videolan.org
Sun May 4 03:41:54 CEST 2014


ffmpeg | branch: master | Matt Oliver <protogonoi at gmail.com> | Sat May  3 19:37:53 2014 +1000| [a6b0c0e123f692f074899768db85e150726d9dc2] | committer: Michael Niedermayer

Enable inline asm in intel compiler on windows.

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a6b0c0e123f692f074899768db85e150726d9dc2
---

 configure |    9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/configure b/configure
index dd7ac79..32ea79f 100755
--- a/configure
+++ b/configure
@@ -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
 



More information about the ffmpeg-cvslog mailing list