Merge pull request #268 from longjon/debug

Add DEBUG option to Makefile/Makefile.config.example
This commit is contained in:
Jeff Donahue 2014-03-27 20:23:45 -07:00
Родитель 18d1e96edc c8ec12c5cb
Коммит 2338027414
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -97,7 +97,11 @@ LIBRARIES := cudart cublas curand \
PYTHON_LIBRARIES := boost_python python2.7 PYTHON_LIBRARIES := boost_python python2.7
WARNINGS := -Wall WARNINGS := -Wall
COMMON_FLAGS := -DNDEBUG -O2 ifdef DEBUG
COMMON_FLAGS := -DDEBUG -g -O0
else
COMMON_FLAGS := -DNDEBUG -O2
endif
# MKL switch (default = non-MKL) # MKL switch (default = non-MKL)
USE_MKL ?= 0 USE_MKL ?= 0

Просмотреть файл

@ -45,3 +45,6 @@ LIBRARY_DIRS := $(PYTHON_LIB) /usr/lib /usr/local/lib
BUILD_DIR := build BUILD_DIR := build
DISTRIBUTE_DIR := distribute DISTRIBUTE_DIR := distribute
# uncomment for debugging
#DEBUG := 1