Line 15:
Line 15:
== Usage ==
== Usage ==
−
* Grab the latest libogc and libfat from the [https://sourceforge.net/scm/?type=svn&group_id=114505 devkitPro SVN]. You will need an SVN client to do so. To compile libogc: run 'make' and then 'make install'. To compile libfat: run 'make ogc-release' and then 'make ogc-install'.
+
* Grab the latest [[devkitPro|devkitPPC]] and [[libogc]]
−
* Copy all of the [http://code.google.com/p/sdl-wii/downloads/list SDL files] (dependencies and SDL port) to the libogc folder (on Windows by default this is c:\devkitPro\libogc).
+
* Copy all of the [http://code.google.com/p/sdl-wii/downloads/list SDL files] to the libogc folder (on Windows by default this is c:\devkitPro\libogc).
Remember to link the libraries in the right order:
Remember to link the libraries in the right order:
LIBS := -lSDL_net -lSDL_ttf -lSDL_gfx -lSDL_mixer -lSDL_image -lSDL \
LIBS := -lSDL_net -lSDL_ttf -lSDL_gfx -lSDL_mixer -lSDL_image -lSDL \
−
-lsmpeg -ljpeg -lpng -lfreetype -ltremor \
+
-lsmpeg -ljpeg -lpng -lfreetype -lvorbisidec \
-lz -lfat -lwiiuse -lbte -logc -lm -lwiikeyboard
-lz -lfat -lwiiuse -lbte -logc -lm -lwiikeyboard
Line 32:
Line 32:
== Tutorial ==
== Tutorial ==
A simple but currently incomplete tutorial can be found [[SDL Wii/tutorial|here]]. Made by [[User:GabberNL|GabberNL]].
A simple but currently incomplete tutorial can be found [[SDL Wii/tutorial|here]]. Made by [[User:GabberNL|GabberNL]].
−
−
== Tips ==
−
−
SDL Wii's video output uses GX, so you might want to disable the console output you see at bootup:
−
−
extern const devoptab_t dotab_stdnull;
−
devoptab_list[STD_OUT] = &dotab_stdnull;
−
devoptab_list[STD_ERR] = &dotab_stdnull;
== Using SDL ==
== Using SDL ==