summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMatt Oliver <protogonoi@gmail.com>2014-05-03 19:37:53 +1000
committerMichael Niedermayer <michaelni@gmx.at>2014-05-04 03:26:40 +0200
commita6b0c0e123f692f074899768db85e150726d9dc2 (patch)
tree07f6e736696702dd15804f7cb160d2704ea284f2 /configure
parent8b132bb7b97091524ba7ff8d500afbc5e2a8a30a (diff)
Enable inline asm in intel compiler on windows.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure9
1 files changed, 5 insertions, 4 deletions
diff --git a/configure b/configure
index dd7ac79f92..32ea79f633 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