#+TITLE: macOS wine 32/64-bit Setup Run 32-bit apps on macOS Catalina (10.15) and Big Sur (11.0). * Installation ** Dependencies First install *homebrew* [[https://brew.sh][brew.sh]] #+begin_src bash /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" #+end_src ** wine-crossover Install via homebrew [[https://github.com/Gcenx/homebrew-wine][formula]]. #+begin_src bash brew tap gcenx/wine brew install --cask --no-quarantine wine-crossover #+end_src * Run win32 binaries ** Initial setup for win32 #+begin_src bash WINEARCH=win32 WINEPREFIX=~/.wine32 winecfg #+end_src ** Run any supported app List of supported app can be found on [[https://appdb.winehq.org][AppDB]]. #+begin_src bash cd path/to/file WINEARCH=win32 WINEPREFIX=~/.wine32 wine APP.exe #+end_src * Run regular (64-bit) binaries Default ~WINEPREFIX~ is =~/.wine=. ** Initial setup #+begin_src bash winecfg #+end_src ** Run any supported app List of supported app can be found on [[https://appdb.winehq.org][AppDB]]. #+begin_src bash cd path/to/file wine APP.exe #+end_src