除了C 之外,我尝试过的任何语言环境都失败了以下代码:
#include <locale>
int main() {
std::locale::global( std::locale("") );
return 0;
}
内置(-std=c++0x好像没有效果,也试过-ansi结果一样):
g++ -ggdb -Wall -std=c++0x solaris_locale.cc
g++ -ggdb -Wall solaris_locale.cc
失败:
$ locale
LANG=en_US.UTF-8
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_ALL=
$ ./a.out
terminate called after throwing an instance of 'std::runtime_error'
what(): locale::facet::_S_create_c_locale name not valid
Abort (core dumped)
作品:
$ LANG=C ./a.out
GDB 回溯给出:
(gdb) bt
#0 0xfe579265 in _lwp_kill () from /lib/libc.so.1
#1 0xfe57218a in thr_kill () from /lib/libc.so.1
#2 0xfe520fed in raise () from /lib/libc.so.1
#3 0xfe4f875d in abort () from /lib/libc.so.1
#4 0xfe7343d5 in __gnu_cxx::__verbose_terminate_handler ()
at /builds/hudson/workspace/nightly-update/build/i386/components/gcc45/gcc-4.5.2/libstdc++-v3/libsupc++/vterminate.cc:93
#5 0xfe7313c5 in __cxxabiv1::__terminate (
handler=0xfe734280 <__gnu_cxx::__verbose_terminate_handler()>)
at /builds/hudson/workspace/nightly-update/build/i386/components/gcc45/gcc-4.5.2/libstdc++-v3/libsupc++/eh_terminate.cc:39
#6 0xfe731422 in std::terminate ()
at /builds/hudson/workspace/nightly-update/build/i386/components/gcc45/gcc-4.5.2/libstdc++-v3/libsupc++/eh_terminate.cc:49
#7 0xfe731591 in __cxa_throw (obj=0x8061af0, tinfo=0xfe7652ec,
dest=0xfe725bb0 <~runtime_error>)
at /builds/hudson/workspace/nightly-update/build/i386/components/gcc45/gcc-4.5.2/libstdc++-v3/libsupc++/eh_throw.cc:83
#8 0xfe71e927 in std::__throw_runtime_error (
__s=0xfe735e18 "locale::facet::_S_create_c_locale name not valid")
at /builds/hudson/workspace/nightly-update/build/i386/components/gcc45/build/i86/i386-pc-solaris2.11/libstdc++-v3/include/bits/basic_string.h:233
#9 0xfe72e790 in std::locale::facet::_S_create_c_locale (__cloc=@0xfeffec5c,
__s=0x8061254 "en_US.UTF-8") at c++locale.cc:66
#10 0xfe735e18 in .LC11 () from /usr/lib/libstdc++.so.6
#11 0x00000000 in ?? ()
机器信息:
$ uname -a
SunOS os 5.11 11.1 i86pc i386 i86pc
$ g++ -v
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/gcc/4.5/lib/gcc/i386-pc-solaris2.11/4.5.2/lto-wrapper
Target: i386-pc-solaris2.11
Configured with: /builds/hudson/workspace/nightly-update/build/i386/components/gcc45/gcc-4.5.2/configure CC=/ws/on11update-tools/SUNWspro/sunstudio12.1/bin/cc CXX=/ws/on11update-tools/SUNWspro/sunstudio12.1/bin/CC --prefix=/usr/gcc/4.5 --mandir=/usr/gcc/4.5/share/man --bindir=/usr/gcc/4.5/bin --libdir=/usr/gcc/4.5/lib --sbindir=/usr/gcc/4.5/sbin --infodir=/usr/gcc/4.5/share/info --libexecdir=/usr/gcc/4.5/lib --enable-languages=c,c++,fortran,objc --enable-shared --with-gmp-include=/usr/include/gmp --with-mpfr-include=/usr/include/mpfr --without-gnu-ld --with-ld=/usr/bin/ld --with-gnu-as --with-as=/usr/gnu/bin/as CFLAGS='-g -O2 '
Thread model: posix
gcc version 4.5.2 (GCC)
我会假设 Solaris C++ 语言环境支持不完整/损坏。