mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-04 08:17:40 +00:00
moved to more warnings into the GCC 3.x only category
svn-id: r8954
This commit is contained in:
parent
bc5dbf8e66
commit
be261b5d7c
8
Makefile
8
Makefile
@ -29,11 +29,11 @@ CXXFLAGS+= -Wall -pedantic -Wpointer-arith -Wcast-qual -Wcast-align -Wconversion
|
||||
CXXFLAGS+= -Wshadow -Wstrict-prototypes -Wuninitialized -Wimplicit
|
||||
CXXFLAGS+= -Wno-long-long -Wno-multichar -Wno-unknown-pragmas -Wno-reorder
|
||||
CXXFLAGS+= -Wwrite-strings -Wredundant-decls -Wdisabled-optimization -fcheck-new -Wundef
|
||||
CXXFLAGS+= -Wctor-dtor-privacy -Wnon-virtual-dtor -Woverloaded-virtual -Wfloat-equal
|
||||
CXXFLAGS+= -Wctor-dtor-privacy -Wnon-virtual-dtor
|
||||
# Seems GCC 2.95 doesn't support the following, so we do not yet turn them
|
||||
# on by default (but I'd strongly recommend to all GCC 2.95 users to update
|
||||
# to a better compiler like GCC 3.x).
|
||||
# CXXFLAGS+= -ansi -W -Wno-unused-parameter
|
||||
# CXXFLAGS+= -ansi -W -Wno-unused-parameter -Woverloaded-virtual -Wfloat-equal
|
||||
|
||||
# Load the build rules & settings for the chosen backend
|
||||
-include build.rules
|
||||
@ -100,7 +100,9 @@ bundle: scummvm-static
|
||||
# Special target to create a static linked binary for Mac OS X
|
||||
scummvm-static: $(OBJS)
|
||||
$(CXX) $(LDFLAGS) -o scummvm-static $(OBJS) \
|
||||
/sw/lib/libSDLmain.a /sw/lib/libSDL.a /sw/lib/libmad.a \
|
||||
/sw/lib/libSDLmain.a /sw/lib/libSDL.a \
|
||||
/sw/lib/libmad.a \
|
||||
/sw/lib/libvorbisfile.a /sw/lib/libvorbis.a /sw/lib/libogg.a \
|
||||
-framework Cocoa -framework Carbon -framework IOKit \
|
||||
-framework OpenGL -framework AGL -framework QuickTime \
|
||||
-framework AudioUnit -framework AudioToolbox
|
||||
|
Loading…
Reference in New Issue
Block a user