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

gitdub at big.cc.gt.atl.ga.us gitdub at big.cc.gt.atl.ga.us
Wed Jan 7 11:56:20 EST 2015


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

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

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

commit 834f0a6c967d5a03c57ce7f7869e478ef6fda603
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.


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

834f0a6c967d5a03c57ce7f7869e478ef6fda603
 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