trunk/src/osd/sdl/sdl.mak
| r26692 | r26693 | |
| 464 | 464 | CCOMFLAGS += -Wno-narrowing -Wno-attributes -Wno-unused-local-typedefs -Wno-unused-variable -Wno-array-bounds -Wno-strict-overflow |
| 465 | 465 | endif |
| 466 | 466 | |
| 467 | | # disable the cast alignment warnings for ARM-based systems (test needs to be fixed to check arch rather than a specific vendor) |
| 468 | | #ifneq (,$(findstring arm,$(UNAME))) # does this work? |
| 469 | | ifeq ($(findstring rpi,$(TEST_GCC)),rpi) |
| 467 | # minimal preliminary ARM support |
| 468 | ifeq ($(findstring arm,$(UNAME)),arm) |
| 470 | 469 | CCOMFLAGS += -Wno-cast-align |
| 470 | DEFS += -DSDLMAME_NOASM -DSDLMAME_ARM |
| 471 | 471 | endif |
| 472 | 472 | |
| 473 | 473 | else # compiler is specifically Clang |