Commit b418b747 authored by Jisyang Mwo's avatar Jisyang Mwo

Not use fixed path for valgrind in Makefile

Just replace "$(HOME)/pyston_deps" with "$(DEPS_DIR)" to make things
keep going well when the dependencies are placed elsewhere.
parent b9b00e93
......@@ -122,7 +122,7 @@ ifeq ($(ENABLE_VALGRIND),0)
VALGRIND := false
else
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
# 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