<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/133725>133725</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
`std::any` is still broken with `visbility=hidden` and `libc++` when used cross DSO boundaries
</td>
</tr>
<tr>
<th>Labels</th>
<td>
libc++
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
milianw
</td>
</tr>
</table>
<pre>
This is related to https://github.com/llvm/llvm-project/issues/48743 which seems to have fixed this issue for `libstdc++`, but apparently there are remaining problems when using `libc++`:
libc++ with clang-20.1.0: https://godbolt.org/z/4TW4rMYoe note that the typeid name is the same, but the hash differs already:
```
NSt3__110shared_ptrI10WrappedIntEE 134520565932116
NSt3__110shared_ptrI10WrappedIntEE 105617327562758
```
this then leads to:
```
libc++abi: terminating due to uncaught exception of type std::bad_any_cast: bad any cast
Program terminated with signal: SIGSEGV
```
If we don't enforce `libc++` and thus default to `libstdc++` then everything works:
https://godbolt.org/z/bsGvfzWsh
```
St10shared_ptrI10WrappedIntE 6190920035151885185
St10shared_ptrI10WrappedIntE 6190920035151885185
```
</pre>
<img width="1" height="1" alt="" src="http://email.email.llvm.org/o/eJycVEtv4zYQ_jX0ZbAGH3pYBx28TRzk0AfgRYOejJE4stilSYGk7PX--oJ24gRJiy4WICCIIL-Z78HBGM3eEbWs_MzKuwXOafShPRhr0J0Wndfn9stoIpgIgSwm0pA8jClNkak1kxsmN3uTxrlb9v7A5Mba48vn0xT839QnJjcmxpkik5tiVRcKTqPpR4hEh3iBwyPBYL5l8GuxOBMMPgCruDVdTLpn8nNeFWfyF-jmBDhNGMgle4Y0UiDAQBDogMYZt4cp-M5m_NNIDuaY965ob6DUmvG8XnfhZNIIvUW3_yT5Uizzofd8ve68TUsf9kxuvmdWX56K8OtfnsD5RJBGTLkpSOeJjAaHB8oK5q2IB3qhkP9HjCNoMwwUIqANhPr83FfFnxdf_7ZNarcTgscRA-ndlMKj4E8Bp4n0o0v39yBUUUpeVmWjpBDVD17iZSVqJeuyknW5eleV8fXFj5QltIQ6u3UT7e3JVwGxM1mxROFgHKYsu54puzy7Huf9mIC-9TQl4x344SIRxKQzrFp3qHfozrseY8owHWpAd4bLP1__Efw-4OGGTvrqVw4x2nxh-_iwvX_48yORxwFOBNo7JusE5AYfevqQCECXMzhH0DTgbFNu_F9CeJWEjhTOacwcTz58jTdp_i8vXXw4Dt-f4viuz236b7OgEg1vJOeqFKVYrUqxKn_uyq3iQrdKN6rBBbWiLlSheMn5YmwbtVJYNHzVFcMw1KpSjayK1aAK1Wst9MK0ksuSKyVEIUrOlytFJa9Q1Fg2daORFTw_RbvMgyAzX1wedSuUqmW5sNiRjZepI-UbB6TMUyi0l_HRzfvICm5NTPEVJ5lkqWUVv4UG3TlbYiLEZKyFLviv5K7JYBU_mtgZa9KZqbvRaE3uxegP7j_PCtLQBx8j3G1_h87PTmMwFBdzsO3Pj75n6sdW_hMAAP__BiGyzA">