1
mirror of https://github.com/mpv-player/mpv synced 2025-01-01 04:36:24 +01:00

Remove additional warnings when using icc - similar to -Wno-pointer-sign.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24051 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
cehoyos 2007-08-13 08:30:53 +00:00
parent f53fef1302
commit 39fc76f396

2
configure vendored
View File

@ -2290,7 +2290,7 @@ if test "$_profile" != "" || test "$_debug" != "" ; then
_install_strip=
elif test -z "$CFLAGS" ; then
if test "$cc_vendor" = "intel" ; then
CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167"
CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
elif test "$cc_vendor" != "gnu" ; then
CFLAGS="-O2 $_march $_mcpu $_pipe"
else