[mlpack-git] mlpack-1.0.x: Default to DEBUG=OFF and PROFILE=OFF for a release. (c1543af)

gitdub at big.cc.gt.atl.ga.us gitdub at big.cc.gt.atl.ga.us
Thu Mar 5 22:05:02 EST 2015


Repository : https://github.com/mlpack/mlpack

On branch  : mlpack-1.0.x
Link       : https://github.com/mlpack/mlpack/compare/904762495c039e345beba14c1142fd719b3bd50e...f94823c800ad6f7266995c700b1b630d5ffdcf40

>---------------------------------------------------------------

commit c1543afb664cfcfce0cae9b2dbcca112275bc66f
Author: Ryan Curtin <ryan at ratml.org>
Date:   Mon Jul 28 14:24:27 2014 +0000

    Default to DEBUG=OFF and PROFILE=OFF for a release.


>---------------------------------------------------------------

c1543afb664cfcfce0cae9b2dbcca112275bc66f
 CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 13cd8fa..881f7d6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,8 +3,8 @@ project(mlpack C CXX)
 
 # First, define all the compilation options.
 # We default to debugging mode for developers.
-option(DEBUG "Compile with debugging information" ON)
-option(PROFILE "Compile with profiling information" ON)
+option(DEBUG "Compile with debugging information" OFF)
+option(PROFILE "Compile with profiling information" OFF)
 option(ARMA_EXTRA_DEBUG "Compile with extra Armadillo debugging symbols." OFF)
 option(MATLAB_BINDINGS "Compile MATLAB bindings if MATLAB is found." OFF)
 



More information about the mlpack-git mailing list