Reviewers: Michael Achenbach,
Message:
This makes it possible to manually test with -Dv8_optimized_debug=1. PTAL.
Description:
Makefile: don't force -Dv8_optimized_debug=0 unnecessarily
Please review this at https://codereview.chromium.org/170243003/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+1, -1 lines):
M Makefile
Index: Makefile
diff --git a/Makefile b/Makefile
index
94914121555bb83fc6300ffba600446e8a6c49ca..6cd347c559f5f8b77914e63dc4eb9ea28ccaf576
100644
--- a/Makefile
+++ b/Makefile
@@ -393,7 +393,7 @@ $(OUT_MAKEFILES): $(GYPFILES) $(ENVFILE)
build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
-Ibuild/standalone.gypi --depth=. \
-Dv8_target_arch=$(subst .,,$(suffix $(basename $@))) \
- -Dv8_optimized_debug=$(if $(findstring optdebug,$@),2,0) \
+ $(if $(findstring optdebug,$@),-Dv8_optimized_debug=2,) \
-S$(suffix $(basename $@))$(suffix $@) $(GYPFLAGS)
$(OUTDIR)/Makefile.native: $(GYPFILES) $(ENVFILE)
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.