File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ # Brewfile to install OpenCoarrays prerequisites with [Homebrew] or [Linuxbrew].
2+ #
3+ # TL;DR: `brew tap homebrew/bundle && brew bundle` to install prerequisites
4+ #
5+ # Homebrew for Mac OS X can be installed via:
6+ # `/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"`
7+ # Linux brew (lives in userland, no sudo required) can be installed with:
8+ # `ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/linuxbrew/go/install)"`
9+ #
10+ # Once Homebrew/Linuxbrew is installed, execute the following commands to install the required prerequisites:
11+ # `brew tap homebrew/bundle && brew bundle`
12+ #
13+ # NOTE: Until Linuxbrew upgrades to GCC 6.1 or later, you will have to edit the `mpich` line to:
14+ # `brew 'mpich', args: ['cc=gcc-5', 'cxx=g++-5']`
15+
16+ brew 'cmake'
17+ brew 'gcc'
18+ brew 'mpich' , args : [ 'cc=gcc-6' , 'cxx=g++-6' ]
19+
20+ # [Homebrew]: http://brew.sh
21+ # [Linuxbrew]: http://linuxbrew.sh
You can’t perform that action at this time.
0 commit comments