mirror of
https://github.com/holub/mame
synced 2025-05-31 10:01:51 +03:00
Final fix: MAME builds warning-free on PowerPC OS X again (nw)
This commit is contained in:
parent
6fb11a202c
commit
b5556208b0
@ -87,7 +87,8 @@ March 2013 NPW:
|
||||
#define LOG_INTERRUPTS 0
|
||||
|
||||
// turn off 'unreferenced label' errors
|
||||
#ifdef __GNUC__
|
||||
// this pragma doesn't work on older GCCs, so cut off at 4.4
|
||||
#if defined(__GNUC__) && __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)
|
||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
||||
#endif
|
||||
#ifdef _MSC_VER
|
||||
|
@ -269,8 +269,10 @@ SDL_NETWORK = pcap
|
||||
MAINLDFLAGS = -Xlinker -all_load
|
||||
NO_X11 = 1
|
||||
NO_USE_XINPUT = 1
|
||||
|
||||
ifdef BIGENDIAN
|
||||
DEFS += -DOSX_PPC=1
|
||||
CCOMFLAGS += -Wno-unused-label
|
||||
ifdef SYMBOLS
|
||||
CCOMFLAGS += -mlong-branch
|
||||
endif # SYMBOLS
|
||||
|
Loading…
Reference in New Issue
Block a user