mirror of
https://github.com/reactos/reactos.git
synced 2024-12-30 19:14:31 +00:00
eliminate GCC4 warnings
svn path=/trunk/; revision=15228
This commit is contained in:
parent
b269a8333e
commit
f5b2c461dc
5 changed files with 5 additions and 5 deletions
|
@ -45,7 +45,7 @@ exe explorer :
|
||||||
i386-stub-win32.c
|
i386-stub-win32.c
|
||||||
: <define>WIN32 <define>_WIN32_IE=0x0600 <define>_WIN32_WINNT=0x0501 <define>WINVER=0x0500
|
: <define>WIN32 <define>_WIN32_IE=0x0600 <define>_WIN32_WINNT=0x0501 <define>WINVER=0x0500
|
||||||
<include>. <include>$(EXPAT_INC)
|
<include>. <include>$(EXPAT_INC)
|
||||||
# only for GCC: <cxxflags>-fexceptions <cxxflags>-Wall
|
# only for GCC: <cxxflags>-fexceptions <cxxflags>-Wall <cxxflags>-Wno-unused-value
|
||||||
<find-shared-library>gdi32
|
<find-shared-library>gdi32
|
||||||
<find-shared-library>ole32
|
<find-shared-library>ole32
|
||||||
<find-shared-library>comctl32
|
<find-shared-library>comctl32
|
||||||
|
|
|
@ -17,7 +17,7 @@ TARGET_INSTALLDIR := .
|
||||||
TARGET_CFLAGS := \
|
TARGET_CFLAGS := \
|
||||||
-D__USE_W32API -DWIN32 -D_ROS_ \
|
-D__USE_W32API -DWIN32 -D_ROS_ \
|
||||||
-D_WIN32_IE=0x0600 -D_WIN32_WINNT=0x0501 -DWINVER=0x0500 \
|
-D_WIN32_IE=0x0600 -D_WIN32_WINNT=0x0501 -DWINVER=0x0500 \
|
||||||
-DUNICODE -fexceptions -Wall -g \
|
-DUNICODE -fexceptions -Wall -Wno-unused-value -g \
|
||||||
-I../../../include/expat
|
-I../../../include/expat
|
||||||
|
|
||||||
TARGET_CPPFLAGS := $(TARGET_CFLAGS)
|
TARGET_CPPFLAGS := $(TARGET_CFLAGS)
|
||||||
|
|
|
@ -9,7 +9,7 @@ CXX = g++
|
||||||
LINK = g++
|
LINK = g++
|
||||||
|
|
||||||
# -D_NO_ALPHABLEND for builds without msimg32.dll dependency
|
# -D_NO_ALPHABLEND for builds without msimg32.dll dependency
|
||||||
CFLAGS = -DWIN32 -D_WIN32_IE=0x0600 -D_WIN32_WINNT=0x0501 -DWINVER=0x0500 -fexceptions -Wall -I. -I$(EXPAT_INC)
|
CFLAGS = -DWIN32 -D_WIN32_IE=0x0600 -D_WIN32_WINNT=0x0501 -DWINVER=0x0500 -fexceptions -Wall -Wno-unused-value -I. -I$(EXPAT_INC)
|
||||||
RCFLAGS = -DWIN32 -D__WINDRES__
|
RCFLAGS = -DWIN32 -D__WINDRES__
|
||||||
LFLAGS = -Wl,--subsystem,windows
|
LFLAGS = -Wl,--subsystem,windows
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ CC = gcc
|
||||||
CXX = g++
|
CXX = g++
|
||||||
LINK = g++
|
LINK = g++
|
||||||
|
|
||||||
CFLAGS = -DWIN32 -D_WIN32_IE=0x0600 -D_WIN32_WINNT=0x0501 -DWINVER=0x0500 -fexceptions -Wall -I. -I$(EXPAT_INC)
|
CFLAGS = -DWIN32 -D_WIN32_IE=0x0600 -D_WIN32_WINNT=0x0501 -DWINVER=0x0500 -fexceptions -Wall -Wno-unused-value -I. -I$(EXPAT_INC)
|
||||||
RCFLAGS = -DWIN32 -D__WINDRES__
|
RCFLAGS = -DWIN32 -D__WINDRES__
|
||||||
LFLAGS = -Wl,--subsystem,windows
|
LFLAGS = -Wl,--subsystem,windows
|
||||||
|
|
||||||
|
|
|
@ -126,7 +126,7 @@ MV = mv
|
||||||
LINT =
|
LINT =
|
||||||
LINTFLAGS =
|
LINTFLAGS =
|
||||||
INCLUDES = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
|
INCLUDES = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
|
||||||
EXTRACFLAGS = -mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith
|
EXTRACFLAGS = -mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -Wno-unused-value
|
||||||
ALLCFLAGS = $(INCLUDES) $(DEFS) $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS)
|
ALLCFLAGS = $(INCLUDES) $(DEFS) $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS)
|
||||||
ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
|
ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
|
||||||
MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
|
MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
|
||||||
|
|
Loading…
Reference in a new issue