mirror of
https://github.com/encounter/oot-gc.git
synced 2026-07-10 12:18:42 -07:00
Replace wine for WiBo in Linux Environments (#65)
* replace wine for wibo in linux environments * review
This commit is contained in:
@@ -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-
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user