Skip to content

Instantly share code, notes, and snippets.

@fuomag9
Forked from doole/wine32_macos.org
Created July 5, 2022 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fuomag9/e3f23ac913dca4d27b80de42e70a320d to your computer and use it in GitHub Desktop.
Save fuomag9/e3f23ac913dca4d27b80de42e70a320d to your computer and use it in GitHub Desktop.
Use win32 binaries on macOS 10.15+

macOS wine 32/64-bit Setup

Run 32-bit apps on macOS Catalina 10.15+.

Installation

Dependencies

First install homebrew brew.sh

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

wine-crossover

Install via homebrew formula.

brew tap gcenx/wine
brew install --cask --no-quarantine wine-crossover

Run win32 binaries

Initial setup for win32

WINEARCH=win32 WINEPREFIX=~/.wine32 winecfg

Run any supported app

List of supported app can be found on AppDB.

cd path/to/file
WINEARCH=win32 WINEPREFIX=~/.wine32 wine APP.exe

Run regular (64-bit) binaries

Default WINEPREFIX is ~/.wine.

Initial setup

winecfg

Run any supported app

List of supported app can be found on AppDB.

cd path/to/file
wine APP.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment