This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # From https://www.reddit.com/r/DolphinEmulator/comments/md0di3/how_to_get_dolphinbar_to_work_on_ubuntu/ | |
| > BlueSwordM: | |
| > To connect your Mayflash GC Adapter and Dolphin Bar on Linux, do this: | |
| > | |
| > ```shell | |
| > touch /etc/udev/rules.d/51-gcadapter.rules | |
| > sudo nano /etc/udev/rules.d/51-gcadapter.rules | |
| > ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pacman -S --needed \ | |
| mingw64/mingw-w64-x86_64-gcc \ | |
| mingw64/mingw-w64-x86_64-cmake \ | |
| mingw64/mingw-w64-x86_64-ninja \ | |
| mingw64/mingw-w64-x86_64-libsoup \ | |
| mingw64/mingw-w64-x86_64-gtk3 \ | |
| mingw64/mingw-w64-x86_64-sqlite3 \ | |
| mingw64/mingw-w64-x86_64-gobject-introspection \ | |
| mingw64/mingw-w64-x86_64-glib2 \ | |
| mingw64/mingw-w64-x86_64-glib-networking \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pacman -S --needed \ | |
| mingw64/mingw-w64-x86_64-gcc \ | |
| mingw64/mingw-w64-x86_64-cmake \ | |
| mingw64/mingw-w64-x86_64-ninja \ | |
| mingw64/mingw-w64-x86_64-libsoup \ | |
| mingw64/mingw-w64-x86_64-gtk3 \ | |
| mingw64/mingw-w64-x86_64-sqlite3 \ | |
| mingw64/mingw-w64-x86_64-gobject-introspection \ | |
| mingw64/mingw-w64-x86_64-glib2 \ | |
| mingw64/mingw-w64-x86_64-glib-networking \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| pacman -S --needed \ | |
| mingw32/mingw-w64-i686-gcc \ | |
| mingw32/mingw-w64-i686-cmake \ | |
| mingw32/mingw-w64-i686-enchant \ | |
| mingw32/mingw-w64-i686-ninja \ | |
| mingw32/mingw-w64-i686-libsoup \ | |
| mingw32/mingw-w64-i686-gtk3 \ | |
| mingw32/mingw-w64-i686-sqlite3 \ | |
| mingw32/mingw-w64-i686-gobject-introspection \ |