Replace wine for WiBo in Linux Environments (#65)

* replace wine for wibo in linux environments

* review
This commit is contained in:
Prakxo
2024-04-10 11:28:48 -07:00
committed by GitHub
parent 36e1694e99
commit 9713442da0
2 changed files with 11 additions and 6 deletions
+6 -1
View File
@@ -42,7 +42,12 @@ DOLPHIN_REVISION := 2003
ifeq ($(WINDOWS),1)
WINE :=
else
WINE := wine
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
WINE := wibo
else ifeq ($(UNAME_S),Darwin)
WINE := wine
endif
endif
PPC_BIN_PREFIX := tools/binutils/powerpc-eabi-
+5 -5
View File
@@ -18,25 +18,25 @@ You will need the following dependencies:
* make
* git
* python3
* 32-bit wine
* WiBo (Linux)
* 32-bit wine (macOS)
* wget
* unzip
* clang-format (optional)
#### Ubuntu/Debian
In order to install the 32-bit version of Wine, you will need to run:
In order to install WiBo, you will need to [download it](https://github.com/decompals/wibo/releases) and run:
```
sudo dpkg --add-architecture i386
sudo apt-get update
sudo install wibo /usr/bin
```
You can install the dependencies with the following commands:
```
sudo apt-get update
sudo apt-get install build-essential git python3 wine32:i386 wget unzip
sudo apt-get install build-essential git python3 wget unzip
```
### macOS