Hi guys. I compile v8 with next command: $ x64.debug debugsymbols=on disassembler=on gdbjit=on console=readline
then I want to setup a breakpoint on v8::internal::FullCodeGenerator:: Generate() in gdb I do next steps $ gdb ./out/x64.debug/d8 $ break v8::internal::FullCodeGenerator::Generate() and everythink is ok, and then I run d8 with some small js script $ r ../test.js and I stop on this line CompilationInfo* info = info_; $ s $ s And here I want to see what is value of local variable info I'm typing $ p info And I'm receiving: No symbol "info" in current context. It's my mistake or somebody has the same issues? It looks like v8 build system calls strip on final executable... -- -- v8-dev mailing list v8-dev@googlegroups.com 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 v8-dev+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.