On Thu, Jun 7, 2018 at 9:16 AM, <[email protected]> wrote: > That's weird. I've checked udata_setCommonData to be called succesfully. > However in Release build i can see default_locale is received wrong: > "en_US_POSIX" and then converted to "en-US".
ICU queries `setlocale(LC_MESSAGES, NULL)` and the LANG, LC_MESSAGES and LC_ALL environment variables for the current locale. "en_US_POSIX" is what it returns when that locale is "C", "POSIX" or nothing. >From your description of the issue, it sounds like there may be a setlocale() or setenv/putenv call in your debug build that isn't in your release build (or vice versa) or perhaps your builds start up with different environments. HTH. -- -- 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.
