| Index: Makefile
|
| diff --git a/Makefile b/Makefile
|
| index 6904a4efddc3062422ed9db9fa1c8eed1b4d9316..22185b5101c4d586b6c5d98a6a7969a5d907a04f 100644
|
| --- a/Makefile
|
| +++ b/Makefile
|
| @@ -76,10 +76,10 @@ ifeq ($(snapshot), off)
|
| endif
|
| # extrachecks=on/off
|
| ifeq ($(extrachecks), on)
|
| - GYPFLAGS += -Dv8_enable_extra_checks=1
|
| + GYPFLAGS += -Dv8_enable_extra_checks=1 -Dv8_enable_handle_zapping=1
|
| endif
|
| ifeq ($(extrachecks), off)
|
| - GYPFLAGS += -Dv8_enable_extra_checks=0
|
| + GYPFLAGS += -Dv8_enable_extra_checks=0 -Dv8_enable_handle_zapping=0
|
| endif
|
| # gdbjit=on/off
|
| ifeq ($(gdbjit), on)
|
| @@ -129,6 +129,10 @@ ifeq ($(i18nsupport), off)
|
| GYPFLAGS += -Dv8_enable_i18n_support=0
|
| TESTFLAGS += --noi18n
|
| endif
|
| +# deprecation_warnings=on
|
| +ifeq ($(deprecationwarnings), on)
|
| + GYPFLAGS += -Dv8_deprecation_warnings=1
|
| +endif
|
| # arm specific flags.
|
| # armv7=false/true
|
| ifeq ($(armv7), false)
|
|
|