Commit abcc2dd0 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Merge pull request #33 from mjisyang/develop

Not using fixed path for valgrind in Makefile
parents b9b00e93 b418b747
...@@ -122,7 +122,7 @@ ifeq ($(ENABLE_VALGRIND),0) ...@@ -122,7 +122,7 @@ ifeq ($(ENABLE_VALGRIND),0)
VALGRIND := false VALGRIND := false
else else
COMMON_CXXFLAGS += -I$(DEPS_DIR)/valgrind-3.9.0/include COMMON_CXXFLAGS += -I$(DEPS_DIR)/valgrind-3.9.0/include
VALGRIND := VALGRIND_LIB=$(HOME)/pyston_deps/valgrind-3.9.0-install/lib/valgrind $(HOME)/pyston_deps/valgrind-3.9.0-install/bin/valgrind VALGRIND := VALGRIND_LIB=$(DEPS_DIR)/valgrind-3.9.0-install/lib/valgrind $(DEPS_DIR)/valgrind-3.9.0-install/bin/valgrind
endif endif
# Extra flags to enable soon: # Extra flags to enable soon:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment