25
edits
Line 32: | Line 32: | ||
Now we configure scummvm buildsystem so it knows what backend we want and where is our raspberry pi local sysroot living, containing the Raspberry Pi headers and libs the cross-compiler and linker will need. In this example configuration, we disable additional libs, and debug symbols since it's intended for final users: | Now we configure scummvm buildsystem so it knows what backend we want and where is our raspberry pi local sysroot living, containing the Raspberry Pi headers and libs the cross-compiler and linker will need. In this example configuration, we disable additional libs, and debug symbols since it's intended for final users: | ||
RPI_ROOTDIR="/home/manuel/rpi_root" ./configure -- | RPI_ROOTDIR="/home/manuel/rpi_root" ./configure --host=raspberrypi --enable-gles-rpi --disable-debug --enable-release --enable-optimizations --disable-mt32emu --disable-flac \ | ||
--disable-mad --disable-vorbis --disable-tremor \ | --disable-mad --disable-vorbis --disable-tremor \ | ||
--disable-fluidsynth --disable-taskbar --disable-timidity --disable-alsa | --disable-fluidsynth --disable-taskbar --disable-timidity --disable-alsa |
edits