-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Update compiler-rt from LLVM 20.1.8 to 21.1.8 #26045
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
base: main
Are you sure you want to change the base?
Conversation
`StackSizeIsUnlimited` in `lib/sanitizer_common/sanitizer_posix_libcdep.cpp` was excluded from Emscripten build along with several other methodsin emscripten-core#20740, presumably because they call `setrlimit` and `getrlimit`. A new call to `StackSizeIsUnlimited` was added in `lib/asan/asan_rtl.cpp` in this version, so this excludes the call too.
This is an automatic change generated by tools/maint/rebaseline_tests.py. The following (1) test expectation files were updated by running the tests with `--rebaseline`: ``` codesize/test_codesize_hello_dylink_all.json: 819075 => 822630 [+3555 bytes / +0.43%] Average change: +0.43% (+0.43% - +0.43%) ```
|
Currently these tests sometimes hang: But this happens in the 'main' branch too, so these look irrelevant. Also these tests fail, but also in the main branch: It looks these need to be skipped with sanitizers: #26043 |
|
Ping 😅 |
|
|
||
| 4.0.23 (in development) | ||
| ----------------------- | ||
| - compiler-rt was updated to LLVM 21.1.8. (#26405) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might need to move to 4.0.24 now since 4.0.23 was just released.
This updates compiler-rt from 20.1.8 to LLVM 21.1.8:
https://github.com/llvm/llvm-project/releases/tag/llvmorg-21.1.8
Additional change:
StackSizeIsUnlimitedinlib/sanitizer_common/sanitizer_posix_libcdep.cppwas excluded from Emscripten build along with several other methods in Fix asan.test_asyncify_longjmp #20740. A new call toStackSizeIsUnlimitedwas added inlib/asan/asan_rtl.cppin this version, so this excludes the call too.