TrustedUser
2,147
edits
m (Spelling fix for libsdl2-dev package) |
m (→Configuring ScummVM: reformat commands) |
||
Line 43: | Line 43: | ||
== Configuring ScummVM == | == Configuring ScummVM == | ||
Run the configure script | Run the configure script in the directory with the ScummVM source files: | ||
<syntaxhighlight lang="bash"> | |||
./configure | |||
</syntaxhighlight > | |||
If no errors come up, you should be ready to compile ScummvM. | |||
For a list of optional features (e.g. additional, not yet enabled engines) run: | |||
<syntaxhighlight lang="bash"> | |||
./configure --help | |||
</syntaxhighlight > | |||
''Note:'' If you are building ScummVM on a system with low main memory (for example, lower than 256MB), you might run out of memory during linking. If you use GNU ld for compiling you can try exporting LDFLAGS="-Wl,--no-keep-memory" before running configure. This tells GNU ld to optimize for memory usage. | ''Note:'' If you are building ScummVM on a system with low main memory (for example, lower than 256MB), you might run out of memory during linking. If you use GNU ld for compiling you can try exporting LDFLAGS="-Wl,--no-keep-memory" before running configure. This tells GNU ld to optimize for memory usage. |