Commit 27e8ffe3 authored by iposva@chromium.org's avatar iposva@chromium.org

- Add support for building the ARM simulator version of V8 to the Xcode project.

- Added new compilation-cache.[cc|h] files.
- Fixed log.cc to be able to build without ENABLE_LOGGING_AND_PROFILING defined.

The next step is to mirror the xcconfigs in a separate change.
Review URL: http://codereview.chromium.org/1948

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@300 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent b6021061
......@@ -346,6 +346,8 @@ void Logger::SharedLibraryEvent(const wchar_t* library_path,
#endif
}
#ifdef ENABLE_LOGGING_AND_PROFILING
void Logger::LogRegExpSource(Handle<JSValue> regexp) {
// Prints "/" + re.source + "/" +
// (re.global?"g":"") + (re.ignorecase?"i":"") + (re.multiline?"m":"")
......@@ -387,6 +389,7 @@ void Logger::LogRegExpSource(Handle<JSValue> regexp) {
fprintf(logfile_, "m");
}
}
#endif // ENABLE_LOGGING_AND_PROFILING
void Logger::RegExpCompileEvent(Handle<JSValue> regexp) {
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment