WaE: possible change in behavior, change in UDT return calling convention
Ignore also MSVC warning C4686. From http://msdn.microsoft.com/en-us/library/ae77984s%28v=VS.90%29.aspx it seems that this is just a warning that the compiler behaviour has changed, but that change was already in MSVC 2003. So it should be irrelevant to us.
This commit is contained in:
parent
c6a24a5e74
commit
c07c94e487
2 changed files with 3 additions and 1 deletions
|
@ -121,6 +121,7 @@ gb_CFLAGS := \
|
|||
-wd4640 \
|
||||
-wd4668 \
|
||||
-wd4675 \
|
||||
-wd4686 \
|
||||
-wd4692 \
|
||||
-wd4706 \
|
||||
-wd4710 \
|
||||
|
@ -175,6 +176,7 @@ gb_CXXFLAGS := \
|
|||
-wd4640 \
|
||||
-wd4668 \
|
||||
-wd4675 \
|
||||
-wd4686 \
|
||||
-wd4692 \
|
||||
-wd4706 \
|
||||
-wd4710 \
|
||||
|
|
|
@ -196,7 +196,7 @@ CFLAGSOUTOBJ=-Fo
|
|||
|
||||
CFLAGSWARNCXX=-Wall -wd4061 -wd4127 -wd4191 -wd4217 -wd4242 -wd4244 -wd4245 -wd4250 -wd4251 -wd4275 \
|
||||
-wd4290 -wd4294 -wd4355 -wd4511 -wd4512 -wd4514 -wd4555 -wd4611 -wd4625 -wd4626 \
|
||||
-wd4640 -wd4675 -wd4706 -wd4710 -wd4711 -wd4786 -wd4800 -wd4820 -wd4503 -wd4619 \
|
||||
-wd4640 -wd4675 -wd4686 -wd4706 -wd4710 -wd4711 -wd4786 -wd4800 -wd4820 -wd4503 -wd4619 \
|
||||
-wd4365 -wd4668 -wd4738 -wd4826 -wd4350 -wd4505 -wd4692 -wd4189 -wd4005 \
|
||||
-wd4180
|
||||
CFLAGSWARNCC=$(CFLAGSWARNCXX) -wd4255
|
||||
|
|
Loading…
Reference in a new issue