-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix nix patching for LLVM 18 #122911
Fix nix patching for LLVM 18 #122911
Conversation
r? @onur-ozkan rustbot has assigned @onur-ozkan. Use |
This comment has been minimized.
This comment has been minimized.
r=me when lint error is fixed |
LLVM 18 now ships `libLLVM*.so.*`, so `.so` is not the sole extension anymore, which breaks the dylib detection. Oops! Adjust it to only search for `.so` somewhere.
7a4c68d
to
60b97a2
Compare
@bors r=clubby789 |
I'm also gonna |
@bors p=2 |
☀️ Test successful - checks-actions |
Finished benchmarking commit (c3b05c6): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 671.167s -> 669.588s (-0.24%) |
LLVM 18 now ships
libLLVM*.so.*
, so.so
is not the sole extension anymore, which breaks the dylib detection. Oops! Adjust it to only search for.so
somewhere.fixes #122906