Revision: 11974
Author: [email protected]
Date: Mon Jul 2 10:26:14 2012
Log: Edited wiki page AddDebuggerSupport through web user interface.
http://code.google.com/p/v8/source/detail?r=11974
Modified:
/wiki/AddDebuggerSupport.wiki
=======================================
--- /wiki/AddDebuggerSupport.wiki Mon Jul 2 10:21:08 2012
+++ /wiki/AddDebuggerSupport.wiki Mon Jul 2 10:26:14 2012
@@ -14,7 +14,11 @@
==Adding debug support step by step==
V8 incorporates full debug support, which is compiled in optionally.
-1. *Make sure you compile V8 with enabled debug support.* It should be
enabled by default, and you may control this with the option
{{{debuggersupport}}}, e.g.
+1. *Make sure you compile V8 with enabled debug support.* It should be
enabled by default, and you may control this with the option
{{{debuggersupport}}}, e.g. for GYP
+{{{
+make debuggersupport=on
+}}}
+or for Scons build system
{{{
scons debuggersupport=on
}}}
@@ -38,7 +42,7 @@
A small program
[http://code.google.com/p/v8/source/browse/trunk/samples/lineprocessor.cc
lineprocessor.cc] comes with V8. It is a simple V8-based console
application that processes its input line by line with a custom !JavaScript
code. The debugger support was intentionally set off by preprocessor
conditional sections to make this HOW-TO more illustrative.
-You can compile it with:
+It automatically gets compiled by GYP build and with Scons you request it
explicitly:
{{{
scons sample=lineprocessor
}}}
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev