Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have compiled chromium with the command make chrome BUILDTYPE=Release. Now I wish to make v8 generate a log file, I have found this page that suggest

out/ia32.release/d8 --prof script.js

I have a folder "Release" in my out folder, but in that folder I don't have a folder named "ia32.release" or "d8".

What should I do ? Thanks in advance for the help!

share|improve this question

1 Answer

d8 is a stand-alone V8 debugging shell. Since you built Chromium, presumably you want to profile your application running in Chromium. In this case, you don't need d8 as you can simply use --js-flags command-line option as documented in Profiling Chromium With V8 and Run Chromium with flags.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.