diff options
author | Yotam Barnoy | 2010-07-18 07:03:14 +0000 |
---|---|---|
committer | Yotam Barnoy | 2010-07-18 07:03:14 +0000 |
commit | 30d751734321cc97bd6591af5531ebc5e5f120a4 (patch) | |
tree | 2c1d826e930a0e3ff5120f45c889b576c167dcdf /configure | |
parent | 844a332f8de4ab74ec1c739c2ab6f41e8d957d53 (diff) | |
download | scummvm-rg350-30d751734321cc97bd6591af5531ebc5e5f120a4.tar.gz scummvm-rg350-30d751734321cc97bd6591af5531ebc5e5f120a4.tar.bz2 scummvm-rg350-30d751734321cc97bd6591af5531ebc5e5f120a4.zip |
PSP: switched to using my memcpy
svn-id: r50982
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1916,7 +1916,7 @@ PLUGIN_SUFFIX := .plg PLUGIN_EXTRA_DEPS = $(EXECUTABLE) CXXFLAGS += -DDYNAMIC_MODULES LDFLAGS += -Wl,-T$(srcdir)/backends/platform/psp/main_prog.ld -PLUGIN_LDFLAGS = -nostartfiles -Wl,-q,--just-symbols,$(EXECUTABLE),--retain-symbols-file,$(srcdir)/backends/platform/psp/plugin.syms,-T$(srcdir)/backends/platform/psp/plugin.ld -lstdc++ -lc -lm +PLUGIN_LDFLAGS = -nostartfiles -Wl,-q,--just-symbols,$(EXECUTABLE),--retain-symbols-file,$(srcdir)/backends/platform/psp/plugin.syms,-T$(srcdir)/backends/platform/psp/plugin.ld -lstdc++ -lc -lm -Wl,--wrap,memcpy PRE_OBJS_FLAGS := -Wl,--whole-archive POST_OBJS_FLAGS := -Wl,--no-whole-archive ' @@ -2468,6 +2468,7 @@ case $_backend in psp) DEFINES="$DEFINES -D__PSP__ -DDISABLE_TEXT_CONSOLE -DDISABLE_COMMAND_LINE -DDISABLE_DOSBOX_OPL" LIBS="$LIBS -lpng -Wl,-Map,mapfile.txt" + LDFLAGS="$LDFLAGS -Wl,--wrap,memcpy" ;; samsungtv) find_sdlconfig |