Not sure it's right place to check but in LazyInitIcuDataFile 
<https://cs.chromium.org/chromium/src/base/i18n/icu_util.cc?type=cs&q=LazyInitIcuDataFile&g=0&l=87>()
 
all the variables are not set (both in Debug and Release build):

  char* lc_messages = getenv("LC_MESSAGES");
  std::string str_lc_messages(lc_messages ? lc_messages : "-");

  char* lang = getenv("LANG");
  std::string str_lc_lang(lang ? lang : "-");

  char* lc_all = getenv("LC_ALL");
  std::string str_lc_all(lc_all ? lc_all : "-");

  LOG(ERROR) << "MyFork: LC_MESSAGES = " << str_lc_messages
                    << ", LANG = " << str_lc_lang
                    << ", LC_ALL = " << str_lc_all;

output:

> LC_MESSAGES = -, LANG = -, LC_ALL = -

-- 
-- 
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/d/optout.

Reply via email to