From a58326cf6ef33de64f949fefd77edafb756ed9e5 Mon Sep 17 00:00:00 2001 From: Frank Celler Date: Sat, 16 Apr 2016 22:32:20 -0700 Subject: [PATCH] added -DCMAKE_BUILD_TYPE=Release --- GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 268cb4728a..d4ff59fac3 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -11,13 +11,13 @@ warning: @echo "" @echo " mkdir build" @echo " cd build" - @echo " cmake .." + @echo " cmake .. -DCMAKE_BUILD_TYPE=Release" @echo " make" @echo "" @echo "MacOS users:" @echo " Please use OPENSSL from homebrew and use" @echo "" - @echo " cmake .. -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl" + @echo " cmake .. -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DCMAKE_BUILD_TYPE=Release" @echo "" @echo " Note that some versions of Apple's clang have severe performance" @echo " issues. Use GCC5 from homebrew in this case."