Commit fb0df5c1 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge remote-tracking branch 'qatar/master'

* qatar/master:
  configure: More msvc/icl combining
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 780b1aa1 f11e4045
...@@ -4423,14 +4423,14 @@ elif enabled tms470; then ...@@ -4423,14 +4423,14 @@ elif enabled tms470; then
add_cflags -pds=824 -pds=837 add_cflags -pds=824 -pds=837
elif enabled pathscale; then elif enabled pathscale; then
add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
elif enabled msvc; then elif enabled_any msvc icl; then
enabled x86_32 && disable aligned_stack enabled x86_32 && disable aligned_stack
elif enabled icl; then if enabled icl; then
enabled x86_32 && disable aligned_stack # basically -fstrict-aliasing for icl that doesn't work (correctly) on 13.x+
# basically -fstrict-aliasing for icl that doesn't work (correctly) on 13.x+ check_cpp_condition "windows.h" "__ICL < 1300" && add_cflags -Qansi-alias
check_cpp_condition "windows.h" "__ICL < 1300" && add_cflags -Qansi-alias # icl will pass the inline asm tests but inline asm is currently not supported (build will fail)
# icl will pass the inline asm tests but inline asm is currently not supported (build will fail) disable inline_asm
disable inline_asm fi
fi fi
case $target_os in case $target_os in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment