Difference between revisions of "Compiling ScummVM/AmigaOS4"

From ScummVM :: Wiki
Jump to navigation Jump to search
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
= Compiling ScummVM for AmigaOS4 =
= Compiling ScummVM for AmigaOS4 =


For building ScummVM on AmigaOS4, use the [[Compiling ScummVM/GCC|Linux/GCC]] build instructions, with the following alterations:
For building ScummVM on AmigaOS4, use the following build instructions:
 
 
== Prerequisite ==
* Download and install AmigaOS4 SDK from [http://hyperion-entertainment.biz/index.php/downloads?view=files&parent=30 Hyperion-Entertainment].
* Download and install SDL(1/2) (where SDL2 should always be preferred) SDK from [https://github.com/AmigaPorts/SDL/releases GitHub].
* You may also need libvorbisfile, libvorbis, libFLAC, libogg, libmad, libtheoradec, libfaad, libmpeg2, liba52, libfreetype, libGL and/or libogles2. They can be retrieved from [http://os4depot.net/index.php?function=browse&cat=development/library OS4Depot.net].
 
 
== Configuring ==
Run the configure script.
 
If no errors come up, you should be ready to compile ScummvM.
* type
<syntaxhighlight lang="bash">
sh ./configure
</syntaxhighlight>
in the directory with the ScummVM source files.
* or run
<syntaxhighlight lang="bash">
sh ./configure --help
</syntaxhighlight>
for a list of optional features (e.g. additional, not yet enabled engines).
 
 
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.


== SDK ==
Download the AmigaOS4 SDK from [ftp://ftp.hyperion-entertainment.biz/SDK/ here].
If newer versions of libraries are available, they can be downloaded from [http://os4depot.net/ here].


== Compiling ==
== Compiling ==
To configure, run in a shell:
* type
<syntaxhighlight lang="bash">
gmake clean
</syntaxhighlight>
in the directory ScummVM was configured and then
<syntaxhighlight lang="bash">
gmake
</syntaxhighlight>


<pre>sh</pre>


then run:
== Cross-compiling with Cygwin ==
* Make sure that you have SDL(1/2) SDK installed (where SDL2 should always be preferred).
* You may also need libogg, libvorbis, libvorbisfile, zlib, libmad.
* Type
<syntaxhighlight lang="bash">
./configure --host=ppc-amigaos
</syntaxhighlight>


<pre>./configure</pre>


and finally run:
Note:
If you get an error about sdl-config, use --with-sdl-prefix parameter to set the path.
 
 
* type
<syntaxhighlight lang="bash">
make
</syntaxhighlight>


<pre>gmake</pre>


== Installing ==
== Installing ==
Copy the exe wherever you want (an intitial - empty - .ini file will be created on the first run).
Copy the exe wherever you want (an intitial - engine-free - .ini file will be created on the first run).
 


== Running ==
== Running ==
Double-click the  "ScummVM" icon to start the program.
Double-click the  "ScummVM" icon to start the program.

Revision as of 14:09, 7 September 2019

Compiling ScummVM for AmigaOS4

For building ScummVM on AmigaOS4, use the following build instructions:


Prerequisite

  • Download and install AmigaOS4 SDK from Hyperion-Entertainment.
  • Download and install SDL(1/2) (where SDL2 should always be preferred) SDK from GitHub.
  • You may also need libvorbisfile, libvorbis, libFLAC, libogg, libmad, libtheoradec, libfaad, libmpeg2, liba52, libfreetype, libGL and/or libogles2. They can be retrieved from OS4Depot.net.


Configuring

Run the configure script.

If no errors come up, you should be ready to compile ScummvM.

  • type
sh ./configure

in the directory with the ScummVM source files.

  • or run
sh ./configure --help

for a list of optional features (e.g. additional, not yet enabled engines).


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.


Compiling

  • type
gmake clean

in the directory ScummVM was configured and then

gmake


Cross-compiling with Cygwin

  • Make sure that you have SDL(1/2) SDK installed (where SDL2 should always be preferred).
  • You may also need libogg, libvorbis, libvorbisfile, zlib, libmad.
  • Type
./configure --host=ppc-amigaos


Note:
If you get an error about sdl-config, use --with-sdl-prefix parameter to set the path.


  • type
make


Installing

Copy the exe wherever you want (an intitial - engine-free - .ini file will be created on the first run).


Running

Double-click the "ScummVM" icon to start the program.