LoginSignup
2
1

More than 3 years have passed since last update.

MacOS(Catalina)でHeimdallを使いたい

Posted at

そのままだとcatalinaに対応していないので、パッチを当ててビルドします。

libusb,qt5,cmakeが必要なので、インストールしていない場合はbrewでインストールします。

brew install libusb
brew install qt5
brew install cmake

ビルドとインストール

git clone https://gitlab.com/BenjaminDobell/Heimdall.git
cd Heimdall
wget https://gitlab.com/BenjaminDobell/Heimdall/-/merge_requests/468.diff
git apply 468.diff
mkdir build
cd build
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DQt5Widgets_DIR=/usr/local/opt/qt5/lib/cmake/Qt5Widgets ..
make
sudo cp bin/heimdall /usr/local/bin

参考

2
1
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
2
1