std::locale breakage on MacOS 10.6 with LANG=en_US.UTF-8

boost, c++, cocoa, macos

Solution

I have encountered this problem very recently on Ubuntu 14.04 LTS and on a Raspberry Pi running the latest Raspbian Wheezy.

It has nothing to do with OS X, rather with a combination of G++ and Boost (at least up to V1.55) and the default locale settings on certain platforms. There are Boost bug tickets sort of related to this issue, see ticket #4688 and ticket #5928.

My "solution" was first to do some extra locale setup, as suggested by this AskUbuntu posting:

sudo locale-gen en_US en_US.UTF-8
sudo dpkg-reconfigure locales

But then, I also had to make sure that the environment variable `LC_ALL` is set to the value of `LANG` (it is advisable to put this in your `.profile`):

export LC_ALL=$LANG

In my case I use the locale `en_US.UTF-8`.

Final remark: the OP said "This program fails when I run this through g++". I understand that this thread was started in 2009, but today there is absolutely no need to use GCC or G++ on the Mac, the much better LLVM/Clang compiler suite is available from Apple free of charge, see the XCode home page.

Problem

I have a C++ application that I am porting to MacOSX (specifically, 10.6). The app makes heavy use of the C++ standard library and boost. I recently observed some breakage in the app that I'm having difficulty understanding. Basically, the boost filesystem library throws a runtime exception when the program runs. With a bit of debugging and googling, I've reduced the offending call to the following minimal program: ``` #include <locale> int main ( int argc, char *argv [] ) { std::locale::global(std::locale("")); return 0; } ``` This program fails when I run this through g++ and execute the resulting program in an environment where `LANG=en_US.UTF-8` is set (which on my computer is part of the default bash session when I create a new console window). Clearing the environment variable (`setenv LANG=`) allows the program to run without issues. But I'm surprised I'm seeing this breakage in the default configuration. My questions are: - Is this expected behavior for this code on MacOS 10.6? - What would a proper workaround be? I can't really re-write the function because the version of the boost libraries we are using executes this statement internally as part of the filesystem library. For completeness, I should point out that the program from which this code was synthesized crashes when launched via the 'open' command (or from the Finder) but not when Xcode runs the program in Debug mode. edit The error given by the above code on 10.6.1 is: ``` $ ./locale terminate called after throwing an instance of 'std::runtime_error' what(): locale::facet::_S_create_c_locale name not valid Abort trap ```

Original source