summaryrefslogtreecommitdiff
path: root/user/clang/big-endian-32.patch
AgeCommit message (Collapse)AuthorFilesLines
2024-10-19user/clang: Use upstream fix for 32-bit BEA. Wilcox1-24/+155
This fixes the problem more generally, using a union so that 64-bit values can still be stored for offsets; this is required for C++20 module support. Ref: #1255 Fixes: fabdb20dca ("user/clang: Fixes for PPC32, and more generally")
2024-10-17user/clang: Fixes for PPC32, and more generallyA. Wilcox1-0/+52
* Fix upstream issue on all 32-bit BE platforms where pointers are cast in an invalid way, causing crashes when building C++ code. * Improve ppc-interp.patch to ensure *all* executable repl tests will be skipped when run on ppc32. * Disable known-flaky test (found on ppc, but also Gentoo/arm). Closes: #1255