Just wanted to let the others know (if any) that ICU in chrome does not take env vars but it's intentionally set in https://cs.chromium.org/chromium/src/chrome/app/chrome_main_delegate.cc?q=chrome_main_delegate&dr=C&l=872
On Thursday, June 7, 2018 at 3:45:44 PM UTC+5, [email protected] wrote: > > 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.
