Re: [v8-users] how to run v8 in debug mode so I can use the %DebugPrint

2019-08-15 Thread 'Simon Zünd' via v8-users
Yes, building V8 with {tools/dev/gm.py x64.debug} will configure a debug build of V8. Please note that gm.py is just a convenience wrapper. The source of truth for a build configuration can always be found in the { args.gn} file of the respective build. In your case this should be {out/x64.debug/ar

Re: [v8-users] how to run v8 in debug mode so I can use the %DebugPrint

2019-08-15 Thread 杨亮
The doc says to build v8 with tools/dev/gm.py x64.release, so is that mean I should build the debug mode d8 with tools/dev/gm.py x64.debug ? Im not very shall how to build the v8 in debug mode. Very thanks man! On Friday, August 16, 2019 at 1:15:14 PM UTC+8, Rodolph Perfetta wrote: > > They proba

Re: [v8-users] how to run v8 in debug mode so I can use the %DebugPrint

2019-08-15 Thread Rodolph Perfetta
They probably meant you need to build d8 in debug mode. more info here: https://v8.dev/docs/build On Thu, 15 Aug 2019 at 22:38, 杨亮 wrote: > Thanks man. In fact I have use the --allow-natives-syntax, but I can't get > enough information about a function, someone say that I need run d8 In the > de

Re: [v8-users] how to run v8 in debug mode so I can use the %DebugPrint

2019-08-15 Thread 杨亮
Thanks man. In fact I have use the --allow-natives-syntax, but I can't get enough information about a function, someone say that I need run d8 In the debug mode, but I don't know how. On Thursday, August 15, 2019 at 10:38:07 PM UTC+8, Rodolph Perfetta wrote: > > To be able to use native function

Re: [v8-users] how to run v8 in debug mode so I can use the %DebugPrint

2019-08-15 Thread Rodolph Perfetta
To be able to use native functions starting with % such as %DebugPrint you need to pass --allow-natives-syntax to d8 on the command line. Cheers, Rodolph On Thu, 15 Aug 2019 at 09:26, 杨亮 wrote: > hi,I want to know how I can run d8 in debug mode so I can > use %DebugPrint command,I can just

[v8-users] how to run v8 in debug mode so I can use the %DebugPrint

2019-08-15 Thread 杨亮
hi,I want to know how I can run d8 in debug mode so I can use %DebugPrint command,I can just get one line output info,seems I need run d8 in the debug mode ? -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You received this message because