Hi,
Just took the latest version and it doest compile if
ENABLE_LOGGING_AND_PROFILING undefined.

I'm guessing something like this should be done...
bool V8::Initialize(Deserializer* des) {

#ifdef ENABLE_LOGGING_AND_PROFILING
...
  CpuProfiler::Setup();
  HeapProfiler::Setup();
#endif
}
void V8::TearDown() {
...
#ifdef ENABLE_LOGGING_AND_PROFILING
  HeapProfiler::TearDown();
  CpuProfiler::TearDown();
#endif
}

Thanks
Vlad

-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users

Reply via email to