Reviewers: Jakob,

Description:
Enable GDBJIT interface for standalone by default.

R=jkumme...@chromium.org

Please review this at https://codereview.chromium.org/18638002/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M Makefile
  M build/standalone.gypi


Index: Makefile
diff --git a/Makefile b/Makefile
index 78e22d777799ddc68ac2f8ac1a794381b475c989..a5810e42347a58effff4a4a8003cdf14871edc84 100644
--- a/Makefile
+++ b/Makefile
@@ -80,10 +80,13 @@ endif
 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
Index: build/standalone.gypi
diff --git a/build/standalone.gypi b/build/standalone.gypi
index b14adfa9caae93f8eb2ddffef5d5acb7ecb76b82..b1303c81220c88783612b9b4b8293239f168fed8 100644
--- a/build/standalone.gypi
+++ b/build/standalone.gypi
@@ -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
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/groups/opt_out.


Reply via email to