Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-11 | CONFIGURE: Fix for bug #3085292 (--docdir not accepted) | Jordi Vilalta Prat | |
- Handle the --docdir option which was documented but not accepted. - Reorder the directory variables and their handling to have the same order everywhere. This will hopefully make bugs like this harder to happen. svn-id: r53149 | |||
2010-10-08 | TOON: Merged Toon engine to ScummVM trunk | Eugene Sandulenko | |
svn-id: r53087 | |||
2010-10-07 | CONFIGURE: add REDUCE_MEMORY_USAGE to N64 and Dingux ports | Fabio Battaglia | |
svn-id: r53050 | |||
2010-09-26 | CONFIGURE: Clean up overuse of _exeext for GP2X/Wiz and Caanoo. | John Willis | |
svn-id: r52917 | |||
2010-09-20 | CONFIGURE: Rework GP2X/Wiz/Caanoo and OpenPandora builds. | John Willis | |
Just some small cleanup to make the building of debug and release builds follow the convention expected from the configure flags. svn-id: r52821 | |||
2010-09-20 | PSP: switch from wrapping memcpy to defining our own memcpy | Yotam Barnoy | |
The advantage is that we get to do inlining and even use lwl and lwr instructions where appropriate. We have to do it ourselves because the PSP doesn't tolerate built-in instructions, but also we have a more efficient memcpy than the lib's. svn-id: r52817 | |||
2010-09-15 | CONFIGURE: Add missing -fuse-cxa-atexit for GameCube. | Andre Heider | |
svn-id: r52731 | |||
2010-09-15 | PLUGINS: Additional plugin check for the ELF loader. | Andre Heider | |
The ELF loader does not have access to the symbols of the main executable, it just relocates symbols to it via fixed offsets. We need to make sure that loaded plugins are from the same link process to prevent crashes. An embedded build date is used for that. svn-id: r52730 | |||
2010-09-15 | PLUGINS: Cleanup. | Andre Heider | |
- Unify ELF loader handling in configure - Rename ELF_LOADER_TARGET to USE_ELF_LOADER svn-id: r52728 | |||
2010-09-12 | TESTBED: Merge gsoc2010-testbed branch | Eugene Sandulenko | |
svn-id: r52681 | |||
2010-09-09 | BUILD: Create configure temp files in build dir | Willem Jan Palenstijn | |
This fixes detection issues with a noexec /tmp (bug #3009167), and matches what autoconf does. There should be no need to randomize temp file names in the build dir. svn-id: r52659 | |||
2010-09-09 | BUILD: Fix compiler test result logging | Willem Jan Palenstijn | |
svn-id: r52658 | |||
2010-09-09 | CONFIGURE: Move GP2XWIZ and CAANOO to use the GPH backend. | John Willis | |
svn-id: r52649 | |||
2010-09-08 | CONFIGURE and N64: add n64.mk with nintendo64 specific dist targets | Fabio Battaglia | |
svn-id: r52641 | |||
2010-09-08 | DINGUX: Add dingux.mk with specific 'dist' targets | Fabio Battaglia | |
svn-id: r52632 | |||
2010-09-06 | PLUGINS: Use the C++ ABI to call dtors when unloading a plugin. | Andre Heider | |
Avoid linking all plugins against libstdc++ to free up some memory (about ~40kb on Wii per plugin). Enable it on GameCube, Wii, DS and PSP (PS2 doesn't have __cxa_atexit support in its libc). svn-id: r52607 | |||
2010-09-06 | CONFIGURE: Wrap usage help around 80 columns | Eugene Sandulenko | |
svn-id: r52602 | |||
2010-09-06 | CONFIGURE: Remove 16Bit graphics support from the GP2X backend. | John Willis | |
This should not have been committed with r52600, the GP2X backend refactor it needs is not yet ready to commit. svn-id: r52601 | |||
2010-09-06 | CONFIGURE: Add support for the OpenPandora backend. | John Willis | |
svn-id: r52600 | |||
2010-09-05 | MERGE: Merge trunk to branch. | Andre Heider | |
svn-id: r52564 | |||
2010-09-05 | PLUGINS: Move all ELF loader related files to its own directory. | Andre Heider | |
svn-id: r52555 | |||
2010-09-05 | PLUGINS: Plugin support for the GameCube/Wii backend. | Andre Heider | |
svn-id: r52553 | |||
2010-09-04 | DS: Merge r52533 from trunk. | Andre Heider | |
svn-id: r52534 | |||
2010-09-04 | DS: Enable stdout/err via nocash when DISABLE_COMMAND_LINE in not set. | Andre Heider | |
svn-id: r52533 | |||
2010-09-01 | PSP: removed strict-aliasing | Yotam Barnoy | |
It's no longer needed after adding __may_alias__ flag in endian.h. svn-id: r52481 | |||
2010-08-31 | PSP: fix BS2 crash by disabling strict aliasing | Yotam Barnoy | |
The problem that caused the crash in BS2 had to do with GCC making improper assumptions about our code. Specifically, the alignment trick we use for READ_UINT32/16 allows some targets(e.g. MIPS) to generate better code, but it also goes against ANSI C aliasing rules, which prohibit the sharing of addresses between a struct and another variable value. Using -fno-strict-aliasing tells GCC not to assume strict ANSI C aliasing and also unfortunately prevents it from making some good optimizations. This change is probably needed for other platforms as well -- the crash on the PSP was simply a very rare coincidence. svn-id: r52473 | |||
2010-08-28 | WII: svn merge Wii port commits from trunk | Andre Heider | |
svn-id: r52425 | |||
2010-08-26 | CONFIGURE: Add support for building for the GPH Caanoo. | John Willis | |
The Caanoo is based on the GP2XWIZ backend but needs to be a seperate target as it uses a different toolchain/libs etc. svn-id: r52401 | |||
2010-08-24 | SOUND: New global define AUDIO_REVERSE_STEREO. | Andre Heider | |
This reverses the stereo channels for all sfx streams, meant for hardware devices which expect an inverse order. Use it for the Wii and Gamecube port since it's reversed since day one :P svn-id: r52357 | |||
2010-08-24 | CONFIGURE: don't force vkeybd for n64 port | Fabio Battaglia | |
svn-id: r52355 | |||
2010-08-20 | CONFIGURE: force disable seq midi for dingux port | Fabio Battaglia | |
svn-id: r52219 | |||
2010-08-19 | DINGUX: disable check for vorbis, because of terrible performance compared ↵ | Fabio Battaglia | |
to tremor svn-id: r52212 | |||
2010-08-19 | DINGOO: new port. Patch #3039277 | Eugene Sandulenko | |
svn-id: r52210 | |||
2010-08-19 | configure: removed spaces from PS2 and PSP cases | Yotam Barnoy | |
svn-id: r52203 | |||
2010-08-17 | CONFIGURE: Properly detect -Wglobal-constructors | Eugene Sandulenko | |
svn-id: r52157 | |||
2010-08-17 | CONFIGURE: Add -Wglobal-constructors to Darwin builds. | Eugene Sandulenko | |
svn-id: r52156 | |||
2010-08-17 | CONFIGURE: Add plugin support for the GP2X backend. | John Willis | |
I'll switch the GP2X to use plugins by default for new releases after some additional testing. svn-id: r52153 | |||
2010-08-17 | CONFIGURE: Remove trailing space (and kick buildbot) | Eugene Sandulenko | |
svn-id: r52152 | |||
2010-08-17 | HUGO: Adding engine to the main tree | Eugene Sandulenko | |
svn-id: r52137 | |||
2010-08-16 | Changed PLUGIN_LD_FLAGS for psp to point to correct directories for ↵ | Tony Puccinelli | |
plugin.syms and plugin.ld svn-id: r52110 | |||
2010-08-15 | added ds build script that makes a static build with all usable engines, ↵ | Tony Puccinelli | |
dumps the symbols used, and then makes a dynamic build that's selectively stripped accordingly svn-id: r52096 | |||
2010-08-14 | added dynamic plugins stuff for PS2 into Makefile (and added couple of ↵ | Tony Puccinelli | |
defines for abstracted ELF-LOADER for psp svn-id: r52083 | |||
2010-08-14 | WII: Update port for the current versions of the base libraries. Enable DVD ↵ | Andre Heider | |
access for the GameCube port. svn-id: r52074 | |||
2010-08-13 | added back --gc-sections for the ds when dynamic modules aren't enabled | Tony Puccinelli | |
svn-id: r52069 | |||
2010-08-13 | moved some dynamic-modules specific defines into the appropriate area for ds ↵ | Tony Puccinelli | |
in configure svn-id: r52061 | |||
2010-08-13 | added dynamic plugins stuff for ds into configure | Tony Puccinelli | |
svn-id: r52060 | |||
2010-08-06 | TESTBED: Merged changes from trunk to my branch | Neeraj Kumar | |
svn-id: r51798 | |||
2010-08-03 | CONFIGURE: removed two useless definitions in N64 sections | Fabio Battaglia | |
svn-id: r51700 | |||
2010-08-03 | PSP: Enable "CPU-hungry sound chips" again, the PSP is fast enough. | Joost Peters | |
svn-id: r51684 | |||
2010-08-03 | PSP: Disable CPU-hungry sound chips | Eugene Sandulenko | |
svn-id: r51683 |