Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Aug 2019 03:41:00 +0000
From:      bugzilla-noreply@freebsd.org
To:        toolchain@FreeBSD.org
Subject:   [Bug 221423] gcc std::locale(LocaleName) crashes instead of throwing an exception
Message-ID:  <bug-221423-29464-AJqP82oWbG@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-221423-29464@https.bugs.freebsd.org/bugzilla/>
References:  <bug-221423-29464@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D221423

--- Comment #12 from Jan Beich <jbeich@FreeBSD.org> ---
(In reply to Walter Schwarzenfeld from comment #10)
> Is this still relevant?

std::locale test still fails on GCC < 6. As lang/gcc (i.e., g++ symlink) ab=
ides
by GCC_DEFAULT it's not an issue since bug 219275.

$ pkg install gcc48 gcc5 gcc6 gcc7 gcc8 gcc9
$ g++9 -Wl,-rpath=3D/usr/local/lib/gcc9 test.cpp
$ ./a.out
$ g++8 -Wl,-rpath=3D/usr/local/lib/gcc8 test.cpp
$ ./a.out
$ g++7 -Wl,-rpath=3D/usr/local/lib/gcc7 test.cpp
$ ./a.out
$ g++6 -Wl,-rpath=3D/usr/local/lib/gcc6 test.cpp
$ ./a.out
$ g++5 -Wl,-rpath=3D/usr/local/lib/gcc5 test.cpp
$./a.out
locale::facet::_S_create_c_locale name not valid
$ g++48 -Wl,-rpath=3D/usr/local/lib/gcc48 test.cpp
$ ./a.out
locale::facet::_S_create_c_locale name not valid
$ g++42 test.cpp
$ ./a.out
locale::facet::_S_create_c_locale name not valid

As for ABI mismatch between g++ and libstdc++ when -Wl,-rpath is not passed=
 and
more than one lang/gcc* is installed it doesn't seem to crash on FreeBSD 11=
.3
or later.

$ uname -rp
11.2-RELEASE amd64
$ pkg install gcc48 gcc5 gcc6 gcc7 gcc8 gcc9
$ g++9 test.cpp
$ ./a.out
Abort trap
$ ldd ./a.out
./a.out:
        libstdc++.so.6 =3D> /usr/local/lib/gcc48/libstdc++.so.6 (0x80082200=
0)
        libm.so.5 =3D> /lib/libm.so.5 (0x800b29000)
        libgcc_s.so.1 =3D> /lib/libgcc_s.so.1 (0x800d56000)
        libc.so.7 =3D> /lib/libc.so.7 (0x800f65000)

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-221423-29464-AJqP82oWbG>