From b20a63fe5f7d8ba657f41c41089e05de8ba01636 Mon Sep 17 00:00:00 2001 From: Jianshu_Zhao <38149286+jianshu93@users.noreply.github.com> Date: Sun, 14 Jan 2024 19:03:06 -0500 Subject: [PATCH] add new evolutionary model --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 584ff0d..21904eb 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,13 @@ For MacOS, the native clang compiler cannot compile without compiling error. It # install homebrew if not already done brew update brew install gcc@13 -GCCPATH=$(ls /usr/local/Cellar/gcc/*/bin/) -export PATH="${GCCPATH}:${PATH}" -# Set CC CXX to /usr/local/Cellar/gcc/*/bin/* as necessary -# Then run cmake as above (a GUI for cmake may also be available for MacOS) +cd ${PROJECT_ROOT_DIRECTORY} +mkdir release && cd release + +# Then run cmake as above (a GUI for cmake may also be available for MacOS) +CC="$(brew --prefix)/bin/gcc-13" CXX="$(brew --prefix)/bin/g++-13" cmake -DCMAKE_INSTALL_PREFIX=. .. +make ``` ## Or if you have conda installed on linux