Difference between revisions of "Compiling ScummVM/Nintendo DS"
Jump to navigation
Jump to search
Ccawley2011 (talk | contribs) |
Ccawley2011 (talk | contribs) m |
||
Line 4: | Line 4: | ||
* Open a Terminal and type: | * Open a Terminal and type: | ||
<pre>git clone | <pre>git clone https://github.com/scummvm/scummvm.git</pre> | ||
== Tools/libraries needed == | == Tools/libraries needed == |
Revision as of 17:24, 4 November 2023
Compiling ScummVM for Nintendo DS
Getting the source
- Open a Terminal and type:
git clone https://github.com/scummvm/scummvm.git
Tools/libraries needed
You must have 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:
sudo dkp-pacman -Sy
sudo dkp-pacman -S \
devkitpro-pkgbuild-helpers \
nds-dev \
nds-zlib
Compiling ScummVM
The following command should be run in order to setup your environment variables for cross-compiling:
source /opt/devkitpro/ndsvars.sh
To compile ScummVM, issue the following commands inside the scummvm folder:
./configure --host=ds --enable-plugins --enable-all-engines
make