271
edits
(Remove outdated instructions on getting ScummVM source code.) |
Ccawley2011 (talk | contribs) |
||
Line 1: | Line 1: | ||
== Compiling ScummVM for Nintendo DS | == Compiling ScummVM for Nintendo DS == | ||
== Getting the source == | == Getting the source == | ||
Line 7: | Line 7: | ||
== Tools/libraries needed == | == Tools/libraries needed == | ||
You must have [ | You must have [https://devkitpro.org/wiki/Getting_Started devkitARM] installed. Version r55 is known to work, more recent versions may work, but occasionally introduce non-backward compatibility changes which cause them to break compatibility with ScummVM. | ||
You need to install at least the following packages: | |||
<syntaxhighlight lang="bash"> | |||
sudo dkp-pacman -Sy | |||
sudo dkp-pacman -S \ | |||
devkitpro-pkgbuild-helpers \ | |||
nds-dev \ | |||
nds-zlib | |||
</syntaxhighlight> | |||
== Compiling ScummVM == | == Compiling ScummVM == | ||
The following command should be run in order to setup your environment variables for cross-compiling: | |||
<syntaxhighlight lang="bash"> | |||
< | source /opt/devkitpro/ndsvars.sh | ||
</syntaxhighlight> | |||
To compile ScummVM, issue the following commands inside the scummvm folder: | |||
= | <syntaxhighlight lang="bash"> | ||
./configure --host=ds --enable-plugins --enable-all-engines | |||
make | |||
</syntaxhighlight> |
edits