Revision: 16783
Author: [email protected]
Date: Wed Sep 18 08:11:44 2013 UTC
Log: Turn on i18n support by default
BUG=v8:2745
[email protected]
Review URL: https://codereview.chromium.org/23003028
http://code.google.com/p/v8/source/detail?r=16783
Modified:
/branches/bleeding_edge/Makefile
/branches/bleeding_edge/Makefile.nacl
/branches/bleeding_edge/build/features.gypi
/branches/bleeding_edge/build/standalone.gypi
/branches/bleeding_edge/samples/samples.gyp
/branches/bleeding_edge/src/d8.gyp
=======================================
--- /branches/bleeding_edge/Makefile Fri Aug 2 09:02:02 2013 UTC
+++ /branches/bleeding_edge/Makefile Wed Sep 18 08:11:44 2013 UTC
@@ -124,9 +124,9 @@
ifeq ($(regexp), interpreted)
GYPFLAGS += -Dv8_interpreted_regexp=1
endif
-# i18nsupport=on
-ifeq ($(i18nsupport), on)
- GYPFLAGS += -Dv8_enable_i18n_support=1
+# i18nsupport=off
+ifeq ($(i18nsupport), off)
+ GYPFLAGS += -Dv8_enable_i18n_support=0
endif
# arm specific flags.
# armv7=false/true
=======================================
--- /branches/bleeding_edge/Makefile.nacl Mon Jul 15 15:41:21 2013 UTC
+++ /branches/bleeding_edge/Makefile.nacl Wed Sep 18 08:11:44 2013 UTC
@@ -73,6 +73,9 @@
# For mksnapshot host generation.
GYPENV += host_os=${HOST_OS}
+
+# ICU doesn't support NaCl.
+GYPENV += v8_enable_i18n_support=0
NACL_MAKEFILES = $(addprefix $(OUTDIR)/Makefile.,$(NACL_ARCHES))
.SECONDEXPANSION:
=======================================
--- /branches/bleeding_edge/build/features.gypi Wed Jul 10 11:15:16 2013 UTC
+++ /branches/bleeding_edge/build/features.gypi Wed Sep 18 08:11:44 2013 UTC
@@ -54,7 +54,7 @@
# Enable ECMAScript Internationalization API. Enabling this feature
will
# add a dependency on the ICU library.
- 'v8_enable_i18n_support%': 0,
+ 'v8_enable_i18n_support%': 1,
},
'target_defaults': {
'conditions': [
=======================================
--- /branches/bleeding_edge/build/standalone.gypi Tue Sep 17 08:31:56 2013
UTC
+++ /branches/bleeding_edge/build/standalone.gypi Wed Sep 18 08:11:44 2013
UTC
@@ -36,7 +36,7 @@
'clang%': 0,
'visibility%': 'hidden',
'v8_enable_backtrace%': 0,
- 'v8_enable_i18n_support%': 0,
+ 'v8_enable_i18n_support%': 1,
'msvs_multi_core_compile%': '1',
'mac_deployment_target%': '10.5',
'variables': {
=======================================
--- /branches/bleeding_edge/samples/samples.gyp Tue Sep 17 08:31:56 2013 UTC
+++ /branches/bleeding_edge/samples/samples.gyp Wed Sep 18 08:11:44 2013 UTC
@@ -28,7 +28,7 @@
{
'variables': {
'v8_code': 1,
- 'v8_enable_i18n_support%': 0,
+ 'v8_enable_i18n_support%': 1,
},
'includes': ['../build/toolchain.gypi', '../build/features.gypi'],
'target_defaults': {
=======================================
--- /branches/bleeding_edge/src/d8.gyp Tue Sep 17 08:31:56 2013 UTC
+++ /branches/bleeding_edge/src/d8.gyp Wed Sep 18 08:11:44 2013 UTC
@@ -31,7 +31,7 @@
'console%': '',
# Enable support for Intel VTune. Supported on ia32/x64 only
'v8_enable_vtunejit%': 0,
- 'v8_enable_i18n_support%': 0,
+ 'v8_enable_i18n_support%': 1,
},
'includes': ['../build/toolchain.gypi', '../build/features.gypi'],
'targets': [
--
--
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.