Index: Makefile |
diff --git a/Makefile b/Makefile |
index 16c004f32d00d11ec16008323034f4baf4ada80c..5c9b56bd6e4b1d9df924f2107e3a7a5aac853c2a 100644 |
--- a/Makefile |
+++ b/Makefile |
@@ -80,6 +80,13 @@ endif |
ifeq ($(extrachecks), off) |
GYPFLAGS += -Dv8_enable_extra_checks=0 |
endif |
+# handlezapping=on/off |
+ifeq ($(handlezapping), on) |
+ GYPFLAGS += -Dv8_enable_handle_zapping=1 |
+endif |
+ifeq ($(handlezapping), off) |
+ GYPFLAGS += -Dv8_enable_handle_zapping=0 |
+endif |
# gdbjit=on/off |
ifeq ($(gdbjit), on) |
GYPFLAGS += -Dv8_enable_gdbjit=1 |