File tree Expand file tree Collapse file tree 5 files changed +15
-9
lines changed
Expand file tree Collapse file tree 5 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 4242 run : brew update
4343
4444 - name : Install dependencies
45- run : brew bundle install --file=./toolchains/macos/Brewfile
45+ shell : bash
46+ run : ./toolchains/macos/install_packages.sh
4647
4748 - name : Install python mako
4849 run : pip3 install mako --break-system-packages
Original file line number Diff line number Diff line change 4242 run : brew update
4343
4444 - name : Install dependencies
45- run : brew bundle install --file=./toolchains/macos/Brewfile
45+ shell : bash
46+ run : ./toolchains/macos/install_packages.sh
4647
4748 - name : Install python mako
4849 run : pip3 install mako
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Clone the repository recursively so all the submodules are installed.
44
55## Steps
661 . Update brew: ``` brew update ```
7- 2 . Install packages: ``` brew bundle install --file= ./toolchains/macos/Brewfile ```
7+ 2 . Install packages: ``` ./toolchains/macos/install_packages.sh ```
883 . Install mako: ``` pip3 install mako ```
994 . Install volk:
1010 - Change to volk: ``` cd vendor/volk ```
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+ # install specific version of cmake 3.x.x since 4.x.x is not backwards compatible with < 3.5
3+ # need to pass special flags and environment variables so brew treats local file as formula instead of a local cask or remote url
4+ wget -O ./cmake.rb https://raw.githubusercontent.com/Homebrew/homebrew-core/14ea6eca0e0b0b4f76940f1f7a929869d5a49930/Formula/c/cmake.rb
5+ HOMEBREW_NO_INSTALL_FROM_API=1 brew install --build-from-source ./cmake.rb
6+ brew install fftw
7+ brew install pkg-config
8+ brew install glfw
9+ brew install zstd
10+ brew install ninja
You can’t perform that action at this time.
0 commit comments