Skip to content

Commit

Permalink
removed installaton instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
bkille committed Jun 3, 2020
1 parent 5d6a516 commit bb20bc9
Showing 1 changed file with 1 addition and 65 deletions.
66 changes: 1 addition & 65 deletions docs/content/parsnp/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,68 +13,4 @@ Required for building from source:
Build (local)
-------------

For your convenience, precompiled binaries provides at::

http://github.com/marbl/harvest

otherwise, to install from source::

git clone https://github.com/marbl/parsnp.git parsnp_src
cd parsnp_src

Before you start, if running OSX Mavericks, OpenMP is not supported via Clang, so you will not be able to build the source. You will need to install OpenMP and build gcc with OpenMP support. This can be accomplished a couple of ways:

* Install Macports, then:

- sudo port install gcc49
- sudo port select gcc mp-gcc49

* (or) Install Homebrew, then:

- brew install gcc49

* (or) Build & install gcc from source with OpenMP

- Download & install gcc 4.9

- https://gcc.gnu.org/install/

* (or) Download & install gcc prebuilt binaries with OpenMP support

- http://hpc.sourceforge.net/

* Final suggestion: If issues persist, we recommend using the precompiled binary until OpenMP is natively supported by Clang/OSX (likely to be so in Yosemite)
Once OpenMP support is added, the first (required!) step is to build libMUSCLE::

cd muscle
./autogen.sh
./configure --prefix=`pwd` CXXFLAGS=’-fopenmp’
make install

Then, build Parsnp::

cd ..
./autogen.sh
./configure
make install

Once both installed (to cwd install by default)::

export PARSNPDIR=/path/to/parsnp/install
Alternative build instructions (requires sudo)
---------------------------------------------------------------

First (important!), build libMUSCLE::

cd muscle
./autogen.sh
./configure --prefix=/usr/local/
sudo make install

Then, build Parsnp::

cd ..
./autogen.sh
./configure --prefix=/usr/local/
sudo make install
Please see the Parsnp `README <https://github.com/marbl/parsnp/blob/master/README.md/>`_. for installation instructions.

0 comments on commit bb20bc9

Please sign in to comment.