[mlpack-git] master: Default to DEBUG=OFF and PROFILE=OFF. (3fe0b72)

gitdub at mlpack.org gitdub at mlpack.org
Tue Jul 5 14:11:43 EDT 2016


Repository : https://github.com/mlpack/mlpack
On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/3c801d6c8d5aa40e79858d2389ad2e7c02a8ca88...3fe0b72997697baf470ef25d959218cdb81d3c4a

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

commit 3fe0b72997697baf470ef25d959218cdb81d3c4a
Author: Ryan Curtin <ryan at ratml.org>
Date:   Tue May 31 15:01:28 2016 -0400

    Default to DEBUG=OFF and PROFILE=OFF.
    
    This is because people are using mlpack from git and wondering why it is so
    slow.


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

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

diff --git a/CMakeLists.txt b/CMakeLists.txt
index b5ce3bc..321cb63 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -18,8 +18,8 @@ endif()
 
 # 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)
 option(TEST_VERBOSE "Run test cases with verbose output." OFF)




More information about the mlpack-git mailing list