LoginSignup
3
2

More than 3 years have passed since last update.

Mac上でWindowsのプログラムを実行(Wine5)

Posted at

1 Wineのダウンロード

https://www.winehq.org
Latest Releasesの Stable:Wine 5.0.2 (shortlog)をダウンロード

2 tar.xzファイルを解凍

3 インストール

ターミナルで解凍されたwine-5.0.2のフォルダをルートにする。
以下のソフトウェアをインストール

brew cask install xquartz
brew install bison flex mingw-w64 pkgconfig

ここで bison --version で最新バージョンが反映されたいることを確認。
もし反映されていない場合

/usr/local/Cellar/bisonに新しいバージョンのbisonがあるのでそこにあるバージョン名3.X.Xを確認

export PATH=/usr/local/Cellar/bison/3.X.X/bin:$PATH
でパスを通す。

bison --version
で反映を確認。

./configure --enable-win64
でコンパイル

make
でインストール

以上

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2