Skip to content
Snippets Groups Projects
Commit 1bf751c3 authored by deuce's avatar deuce
Browse files

Don't require Valgrind for debug builds of Spidermonkey.

parent 552f9fc9
No related branches found
No related tags found
No related merge requests found
...@@ -4,9 +4,9 @@ SRC_ROOT = ../../src ...@@ -4,9 +4,9 @@ SRC_ROOT = ../../src
# Cross platform/compiler definitions # Cross platform/compiler definitions
include $(SRC_ROOT)/build/Common.gmake # defines clean and output directory rules include $(SRC_ROOT)/build/Common.gmake # defines clean and output directory rules
JS_CONFIGURE_ARGS += --with-system-nspr --disable-tests --disable-shared-js --disable-valgrind --enable-threadsafe --prefix=$(shell echo `pwd`$(DIRSEP)$(JS_IDIR)) JS_CONFIGURE_ARGS += --with-system-nspr --disable-tests --disable-shared-js --enable-threadsafe --prefix=$(shell echo `pwd`$(DIRSEP)$(JS_IDIR))
ifdef DEBUG ifdef DEBUG
JS_CONFIGURE_ARGS += --enable-debug-symbols --disable-optimize --enable-valgrind JS_CONFIGURE_ARGS += --enable-debug-symbols --disable-optimize
else else
JS_CONFIGURE_ARGS += --enable-optimize=-O3 JS_CONFIGURE_ARGS += --enable-optimize=-O3
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment