summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-03-19 06:15:14 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-03-19 06:15:14 +0000
commit58d832602b06c8d4587562160714531443fd54e4 (patch)
tree8d9ec0dbb0ac9aea339d7476353a258a1e93aee9 /makefile
parent5caef9210c376d563b9fa8b47a81f68b0afc6f3a (diff)
Having decided to look at the MAME source again, I have a fairly minor patch:
* Fix build of ldplayer on OS X. Since the CUSTOM sound module no longer exists, I arbitrarily changed it to WAVE, as ar gets upset if it has no input files. I also removed the -all_load flag for ldplayer from the main makefile as it upsets the linker on OS X. * Fix build for PPC64 Linux. (This slightly messes up static branch prediction hints on OS X and AIX, but OS X for PPC64 is dead, and no- one builds MAME for AIX, and it will still build, anyway.) * Paramaterise the arguments to check for NULL in the ATTR_NONNULL macro rather than just checking the first argument. This requires compiler support for C99 variadic macros (MSVC2005 and GCC4 have this AFAIK). Vas
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 0 insertions, 5 deletions
diff --git a/makefile b/makefile
index 2777a0e3983..4827e37e89e 100644
--- a/makefile
+++ b/makefile
@@ -402,11 +402,6 @@ ifdef MAP
LDFLAGSEMULATOR += -Wl,-Map,$(FULLNAME).map
endif
-# any reason why this doesn't work for all cases?
-ifeq ($(TARGETOS),macosx)
-LDFLAGSEMULATOR += -Xlinker -all_load
-endif
-
#-------------------------------------------------