summaryrefslogtreecommitdiff
path: root/user/clang/ppc-interp.patch
AgeCommit message (Collapse)AuthorFilesLines
2025-05-04user/clang: Re-enable interpreter tests on ppc32Ash Logan1-35/+0
Now that LLVM has REL24 support patched in, these tests are good to run.
2024-10-17user/clang: Fixes for PPC32, and more generallyA. Wilcox1-10/+23
* 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
2024-10-17user/clang: Update to 18.1.8A. Wilcox1-10/+7
2022-12-05user/clang: Disable tests on PowerPCA. Wilcox1-0/+25
The Interpreter unit-test is already disabled on AIX, so it is likely ABI-related. The other Interpreter test needs R_PPC_REL24 to be implemented in the LLVM RuntimeDyld to work. The DirectoryWatcher tests are all broken for unknown reasons, but don't affect actual compilation so we just skip them for now. Fixes: #848