Created
January 20, 2015 08:58
-
-
Save wancw/9a42176f467f6144bee8 to your computer and use it in GitHub Desktop.
Fallback to minimal locale ("C" locale)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* modified from https://github.com/bitcoin/bitcoin/issues/4147#issuecomment-42493883 */ | |
try { | |
std::locale(""); | |
} catch (const std::runtime_error& e) { | |
setenv("LC_ALL", "C", 1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment