1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46# libretro-dolphin-launcher
Launch Nintendo Wii and GameCube games through [Dolphin](https://dolphin-emu.org) native, directly from [RetroArch](http://www.libretro.com/).

Note: This is a big hack, and it's recommended to use the [Dolphin Core](https://github.com/libretro/dolphin) instead.
## Installation
1. Compile the core
``` bash
git clone https://github.com/RobLoach/libretro-dolphin-launcher.git
cd libretro-dolphin-launcher
make
```
2. Copy the core file to the RetroArch cores directory
``` bash
cp dolphin_launcher_libretro.so /usr/lib/libretro/
cp dolphin_launcher_libretro.info /usr/share/libretro/info/
```
3. Make sure [Dolphin](http://dolphin-emu.org) [is installed](https://dolphin-emu.org/download/?ref=btn). You should be able to run at least one of the following commands:
``` bash
dolphin-emu --version
dolphin-emu-nogui --version
flatpak run org.DolphinEmu.dolphin-emu --version
```
## Usage
1. Scan Nintendo GameCube and Wii games in RetroArch
2. Launch the games directly from the RetroArch menu
3. Alternatively, you can run games through the command line
``` bash
retroarch -L dolphin_launcher_libretro.so Mario.gcm
```
## Contributors
- [Rob Loach](http://github.com/robloach)
- [Alcaro](https://github.com/Alcaro)