-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathBrewfile
19 lines (17 loc) · 827 Bytes
/
Brewfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Brewfile to install OpenCoarrays prerequisites with [Homebrew].
#
# TL;DR: `brew tap homebrew/bundle && brew bundle` to install prerequisites
#
# Homebrew for Mac OS X can be installed via:
# `/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"`
# Homebrew for Linux (lives in userland, no sudo required) can be installed with:
# `sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"`
#
# Once Homebrew/Linuxbrew is installed, execute the following commands to install the required prerequisites:
# `brew tap homebrew/bundle && brew bundle`
#
brew 'cmake'
brew 'gcc'
brew 'mpich' #, args: ['cc=gcc-9', 'build-from-source', 'verbose']
# brew 'opencoarrays', args: ['cc=gcc-9', 'build-from-source', 'verbose']
# [Homebrew]: http://brew.sh