Revision: 15467
Author: [email protected]
Date: Wed Jul 3 05:00:40 2013
Log: Enable GDBJIT interface for standalone by default.
[email protected]
Review URL: https://codereview.chromium.org/18638002
http://code.google.com/p/v8/source/detail?r=15467
Modified:
/branches/bleeding_edge/Makefile
/branches/bleeding_edge/build/standalone.gypi
=======================================
--- /branches/bleeding_edge/Makefile Wed Jul 3 04:22:29 2013
+++ /branches/bleeding_edge/Makefile Wed Jul 3 05:00:40 2013
@@ -80,10 +80,13 @@
ifeq ($(extrachecks), off)
GYPFLAGS += -Dv8_enable_extra_checks=0
endif
-# gdbjit=on
+# gdbjit=on/off
ifeq ($(gdbjit), on)
GYPFLAGS += -Dv8_enable_gdbjit=1
endif
+ifeq ($(gdbjit), off)
+ GYPFLAGS += -Dv8_enable_gdbjit=0
+endif
# vtunejit=on
ifeq ($(vtunejit), on)
GYPFLAGS += -Dv8_enable_vtunejit=1
=======================================
--- /branches/bleeding_edge/build/standalone.gypi Mon Jul 1 01:32:41 2013
+++ /branches/bleeding_edge/build/standalone.gypi Wed Jul 3 05:00:40 2013
@@ -87,6 +87,12 @@
}, {
'os_posix%': 1,
}],
+ ['(v8_target_arch=="ia32" or v8_target_arch=="x64") and \
+ (OS=="linux" or OS=="mac")', {
+ 'v8_enable_gdbjit%': 1,
+ }, {
+ 'v8_enable_gdbjit%': 0,
+ }],
],
# Default ARM variable settings.
'armv7%': 'default',
--
--
v8-dev mailing list
[email protected]
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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.