From 317cf84e84b87c6924921cdc5a207c03ae60cf7f Mon Sep 17 00:00:00 2001 From: Milot Mirdita Date: Thu, 8 Dec 2016 16:03:15 +0700 Subject: [PATCH] Fixed wrong compiler used --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 881b8169..7d1d7fbf 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Compiling MMseqs2 from source has the advantage that it will be optimized to the :exclamation: Please install and use `gcc` from Homebrew, if you want to compile MMseqs2 on MacOS. The default MacOS `clang` compiler does not support OpenMP and MMseqs2 will not be able to run multithreaded. Use the following cmake call: - CXX="$(brew --prefix)/bin/gcc-6" cmake -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX=. .. + CXX="$(brew --prefix)/bin/g++-6" cmake -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX=. .. ### Install static Linux version The following command will download the last MMseqs version, extract it and set the `PATH` variable. This version runs only on linux. If you want to run it on Mac please compile it or use brew.