cb424d7448
verify-patch-sanity.py validates every active recipe .patch has internally- consistent hunk line counts — catching the 'malformed patch at line N' failure at commit/CI/preflight time instead of hours into a cook. This cycle hit that class three times (qtwaylandscanner, sddm, xwayland), each only discovered when cookbook tried to apply the patch. Running it across the repo found 29 latent malformed patches (validated against GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22'). They were harmless only because they sit in vendored recipes (baked, not re- applied) — but would fail on any version-bump re-derivation. --fix recounts the hunk headers (body untouched) and repaired all 29. Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test (test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats (empty placeholders, bare-@@ git hunks).
19 lines
852 B
CMake
19 lines
852 B
CMake
# This file sets up a CMakeCache for GPU builds of compiler-rt. This supports
|
|
# amdgcn and nvptx builds targeting the builtins library.
|
|
|
|
set(COMPILER_RT_INCLUDE_TESTS OFF CACHE BOOL "")
|
|
set(COMPILER_RT_HAS_SAFESTACK OFF CACHE BOOL "")
|
|
|
|
set(COMPILER_RT_BUILD_BUILTINS ON CACHE BOOL "")
|
|
set(COMPILER_RT_BAREMETAL_BUILD ON CACHE BOOL "")
|
|
set(COMPILER_RT_BUILD_CRT OFF CACHE BOOL "")
|
|
set(COMPILER_RT_BUILD_SANITIZERS OFF CACHE BOOL "")
|
|
set(COMPILER_RT_BUILD_XRAY OFF CACHE BOOL "")
|
|
set(COMPILER_RT_BUILD_LIBFUZZER OFF CACHE BOOL "")
|
|
set(COMPILER_RT_BUILD_PROFILE OFF CACHE BOOL "")
|
|
set(COMPILER_RT_BUILD_MEMPROF OFF CACHE BOOL "")
|
|
set(COMPILER_RT_BUILD_XRAY_NO_PREINIT OFF CACHE BOOL "")
|
|
set(COMPILER_RT_BUILD_ORC OFF CACHE BOOL "")
|
|
set(COMPILER_RT_BUILD_GWP_ASAN OFF CACHE BOOL "")
|
|
set(COMPILER_RT_BUILD_SCUDO_SANTDALONE_WITH_LLVM_LIBC OFF CACHE BOOL "")
|