Browse Source

Updated macOS (OSX) install instructions (#1316)

pull/4/head
SHossain 5 years ago
committed by jl777
parent
commit
88006798ca
  1. 20
      README.md

20
README.md

@ -71,20 +71,32 @@ cd komodo
#This can take some time. #This can take some time.
``` ```
#### OSX #### OSX
Ensure you have [brew](https://brew.sh) and Command Line Tools installed. Ensure you have [brew](https://brew.sh) and Command Line Tools installed.
```shell ```shell
# Install brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# installs brew # Install Xcode, opens a pop-up window to install CLT without installing the entire Xcode package
xcode-select --install xcode-select --install
# opens a pop-up window to install CLT without installing the entire Xcode package # Update brew and install dependencies
brew update && brew install gcc@6 brew update
brew upgrade
brew tap discoteq/discoteq; brew install flock
brew install autoconf autogen automake
brew install gcc@6
brew install binutils
brew install protobuf
brew install coreutils
brew install wget
# Clone the Komodo repo
git clone https://github.com/komodoplatform/komodo --branch master --single-branch git clone https://github.com/komodoplatform/komodo --branch master --single-branch
# Change master branch to other branch you wish to compile
cd komodo cd komodo
./zcutil/fetch-params.sh ./zcutil/fetch-params.sh
# -j8 = using 8 threads for the compilation - replace 8 with number of threads you want to use # -j8 = using 8 threads for the compilation - replace 8 with number of threads you want to use
./zcutil/build-mac.sh -j8 ./zcutil/build-mac.sh -j8
#This can take some time. # This can take some time.
``` ```
#### Windows #### Windows

Loading…
Cancel
Save