Building RetroArch

From Emulation General Wiki
Revision as of 03:01, 2 February 2016 by Monroe88 (talk | contribs)
Jump to navigation Jump to search

This page contains instructions of building RetroArch from source. Most average users should use prebuilt binaries instead.

Building on Windows

The recommended toolchain for building RetroArch on Windows is MinGW-w64 running inside the MSYS2 environment. Installers for MSYS2 can be found at msys2.github.io. Other toolchains like TDM-GCC or Visual Studio can work, but this guide will only cover MSYS2.

Preparing the environment

Once you have installed MSYS2, you will need to update it and install the toolchain packages.

Updating MSYS2

First, start the MSYS2 Shell entry that should be present in your Start Menu.

Updating your install is a multiple step operation: first you update the core, then you have to rehash the environment and finally you'll be able to properly update the rest of the system. Once you are in the MSYS2 Shell terminal, run the following commands to upgrade the core MSYS2 packages:

pacman --noconfirm -Sy
pacman --needed --noconfirm -S bash pacman pacman-mirrors msys2-runtime

When the command is done working, close all MSYS2 shells you might have open and run these commands in the Run as dialog or in cmd.exe:

  • In a 64bit install of MSYS2:
%systemdrive%\msys64\autorebase.bat
  • In a 32bit install of MSYS2:
%systemdrive%\msys32\autorebase.bat

Once the window closes, open the MSYS2 Shell again and type pacman --noconfirm -Su then repeat the previous operation to finish the process. Note: If you get fork errors, the second step may have failed. You should go to your msys2 install directory and run autorebase.bat manually. If that didn't solve the problem consider reinstalling msys2.

Installing the build time dependencies

TODO: find another way to install nvidia-cg-toolkit packages.

The following commands will install everything you need to build RetroArch in your MSYS2 environment.

  • For 32 bit builds run:
pacman -S --noconfirm --needed git make mingw-w64-i686-toolchain mingw-w64-i686-pkgconf mingw-w64-i686-nvidia-cg-toolkit mingw-w64-i686-SDL2 mingw-w64-i686-libxml2 mingw-w64-i686-freetype mingw-w64-i686
python3 mingw-w64-i686-ffmpeg
  • For 64 bit builds:
pacman -S --noconfirm --needed git make mingw-w64-x86_64-toolchain mingw-w64-x86_64-pkgconf mingw-w64-x86_64-nvidia-cg-toolkit mingw-w64-x86_64-SDL2 mingw-w64-x86_64-libxml2 mingw-w64-x86_64-freetype 
mingw-w64-x86_64-python3 mingw-w64-x86_64-ffmpeg

After installing the packages, close the MSYS2 shell and open either MinGW-w64 Win64 Shell for 64 bit builds or MinGW-w64 Win32 Shell if you want to build for 32 bit systems. Both should be available in your Start Menu.

Cloning RetroArch and libretro repositories

Once you are running the MSY2 MinGW-w64 Shell, then you will need to clone the RetroArch and libretro Git repositories.

git clone https://github.com/libretro/libretro-super.git
cd libretro-super
./libretro-fetch.sh

This will fetch every repository in the libretro organization on Github into %MSYS2%/home/%USERNAME%/ . Since there are a lot of repositories to download, this will take a while to complete. You can use libretro-fetch.sh again to update all repositories, and you can fetch repositories individually by specifying their name e.g. ./libretro-fetch.sh mednafen_psx

If you change a file in one of the cloned repositories and git won't let you update, do:

git reset --hard
git pull

It should update after that. If not, delete the whole repository and run libretro-fetch.sh again.

To change directories/folders do:

cd folder
or
cd folder/subfolder

etc.

To go up one directory:

cd ..

Other basic UNIX shell commands like "ls" can be useful as well.

Building RetroArch

Then execute these commands from the Git Bash shell:

cd libretro-super
cd retroarch
git pull
./configure
make clean
make -j4

You should see a list of files being compiled, ending with LD retroarch. You can then copy the newly compiled retroarch.exe from libretro-super\retroarch to wherever you keep your RetroArch installation.

If you are experiencing a missing DLL error, you can fetch all MSYS2 installed DLLs by executing this line:

for i in $(seq 3); do for bin in $(ldd *exe *dll | grep -i mingw | cut -d\  -f 3); do cp -vu "$bin" . ; done; done

Video filters and Audio DSP filters are compiled by going into gfx/filters and audio/filters, respectively, and running make on the Makefile. For example

cd retroarch
cd gfx/filters
make clean
make

After they build, you can copy the filters to your RetroArch installation.


Building libretro cores

After running the fetch script, you should have a folder for each libretro core in your libretro-super folder.

You can use libretro-build.sh to build all cores at once:

cd libretro-super
./libretro-build.sh

This will attempt to build almost every core available. This can take quite a while to complete, so you may wish to build cores individually:

cd libretro-super
./libretro-build.sh mednafen_psx

The exact names for fetching or building individual cores can be found in the /rules.d/core-rules.sh script.

Cores that build successfully are put in /dist/win or /dist/win_x64 in your libretro-super folder. Be sure to run libretro-fetch.sh to update your local Git clones before building.

Building cores manually

If you wish, you can build cores manually if you want more control over the build process, though it's not recommended for inexperienced users. For most cores, all you need to do is do:

git pull
make -f Makefile.libretro clean
make -f Makefile.libretro -j4

If there isn't a Makefile or Makefile.libretro in the top level, try to find a "libretro" folder within the repository and there should be a Makefile in there. After the core is built, it will be in the same folder as the Makefile used to compile it.

The following need only make:

  • 4do-libretro
  • any 'beetle' source
  • Dinothawr
  • dolphin (inside /libretro)
  • libretro-cap32
  • libretro-lutro
  • libretro-o2em
  • libretro-ppsspp (inside /libretro)
  • libretro-uae
  • mednfen-psx-libretro
  • nestopia (inside /libretro)
  • prosystem-libretro
  • stella
  • yabause (inside /libretro)

The following need make -f Makefile.libretro:

  • blueMSX-libretro
  • desmume (inside /desmume)
  • fuse-libretro
  • gambatte-libretro (inside /libgambatte)
  • Genesis-Plus-GX
  • gw-libretro
  • Hatari (You may need to run ./configure)
  • mgba
  • picodrive
  • snes9x-next
  • vba-next

The following cores also require the running of git submodule update --init:

  • dolphin
  • libretro-ppsspp
  • picodrive

Some cores need special commands for building:

bsnes

cd libretro-bsnes_%PROFILE%
make profile='%PROFILE%' clean
make profile='%PROFILE%' -j4

Replace %PROFILE% with accuracy, balanced, or performance.

MAME

If doing a 64-bit build.

cd libretro-mame
make -f Makefile.libretro PTR64=1 clean
make -f Makefile.libretro PTR64=1 -j4

This core will take a while to build, depending on how fast your CPU is, how many jobs you specify, and how many cores your CPU has. You can save some time updating the core by adding PARTIAL=1 when doing a clean. You can specify a subtarget by adding e.g. SUBTARGET=arcade or SUBTARGET=tiny in the current version of MAME.

Building on Linux

Building on Linux is similar to building on Windows.

After entering the RetroArch folder, do:

./configure

...and install any necessary dependencies before running ./configure again. Then, do:

make


NOTE: Compilation may fail if you do not have the following installed:

  • g++
  • libgl1-mesa-dev
  • libsdl2-dev
  • mesa-common-dev
  • pkg-config

Also, you may need one of the following if RetroArch is to run audio:

  • alsa (libsdl2-dev)
  • libpulse (libpulse-dev)
  • lossaudo
  • lopenal (libopenal-dev)
  • jack
  • libroar (libroar-dev) WARNING: This might break your compilation.
  • rsound

Raspberry Pi

There is a tutorial on how to bypass X11 and use KMS, thus reducing overhead.

https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=56070

The above might work on regular desktop Linux, too.

Even so, if you plan on turning your Raspberry Pi into a "RetroArch machine", the easiest way is installing the RetroPie image. (You can also run its script.)