Commit f41f6c2b authored by jochen@chromium.org's avatar jochen@chromium.org

Turn on i18n support by default

BUG=v8:2745
R=danno@chromium.org

Review URL: https://codereview.chromium.org/23003028

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16783 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent ae942958
...@@ -124,9 +124,9 @@ endif ...@@ -124,9 +124,9 @@ endif
ifeq ($(regexp), interpreted) ifeq ($(regexp), interpreted)
GYPFLAGS += -Dv8_interpreted_regexp=1 GYPFLAGS += -Dv8_interpreted_regexp=1
endif endif
# i18nsupport=on # i18nsupport=off
ifeq ($(i18nsupport), on) ifeq ($(i18nsupport), off)
GYPFLAGS += -Dv8_enable_i18n_support=1 GYPFLAGS += -Dv8_enable_i18n_support=0
endif endif
# arm specific flags. # arm specific flags.
# armv7=false/true # armv7=false/true
......
...@@ -74,6 +74,9 @@ endif ...@@ -74,6 +74,9 @@ endif
# For mksnapshot host generation. # For mksnapshot host generation.
GYPENV += host_os=${HOST_OS} GYPENV += host_os=${HOST_OS}
# ICU doesn't support NaCl.
GYPENV += v8_enable_i18n_support=0
NACL_MAKEFILES = $(addprefix $(OUTDIR)/Makefile.,$(NACL_ARCHES)) NACL_MAKEFILES = $(addprefix $(OUTDIR)/Makefile.,$(NACL_ARCHES))
.SECONDEXPANSION: .SECONDEXPANSION:
# For some reason the $$(basename $$@) expansion didn't work here... # For some reason the $$(basename $$@) expansion didn't work here...
......
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
# Enable ECMAScript Internationalization API. Enabling this feature will # Enable ECMAScript Internationalization API. Enabling this feature will
# add a dependency on the ICU library. # add a dependency on the ICU library.
'v8_enable_i18n_support%': 0, 'v8_enable_i18n_support%': 1,
}, },
'target_defaults': { 'target_defaults': {
'conditions': [ 'conditions': [
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
'clang%': 0, 'clang%': 0,
'visibility%': 'hidden', 'visibility%': 'hidden',
'v8_enable_backtrace%': 0, 'v8_enable_backtrace%': 0,
'v8_enable_i18n_support%': 0, 'v8_enable_i18n_support%': 1,
'msvs_multi_core_compile%': '1', 'msvs_multi_core_compile%': '1',
'mac_deployment_target%': '10.5', 'mac_deployment_target%': '10.5',
'variables': { 'variables': {
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
{ {
'variables': { 'variables': {
'v8_code': 1, 'v8_code': 1,
'v8_enable_i18n_support%': 0, 'v8_enable_i18n_support%': 1,
}, },
'includes': ['../build/toolchain.gypi', '../build/features.gypi'], 'includes': ['../build/toolchain.gypi', '../build/features.gypi'],
'target_defaults': { 'target_defaults': {
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
'console%': '', 'console%': '',
# Enable support for Intel VTune. Supported on ia32/x64 only # Enable support for Intel VTune. Supported on ia32/x64 only
'v8_enable_vtunejit%': 0, 'v8_enable_vtunejit%': 0,
'v8_enable_i18n_support%': 0, 'v8_enable_i18n_support%': 1,
}, },
'includes': ['../build/toolchain.gypi', '../build/features.gypi'], 'includes': ['../build/toolchain.gypi', '../build/features.gypi'],
'targets': [ 'targets': [
......
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