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).
39 lines
1.5 KiB
C
39 lines
1.5 KiB
C
/// -fno-semantic-interposition is the default and local aliases (via dso_local) are allowed.
|
|
// RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -mrelocation-model pic -pic-level 1 %s -o - | FileCheck %s --check-prefixes=CHECK,NOMETADATA
|
|
|
|
/// -fsemantic-interposition sets a module metadata.
|
|
// RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -mrelocation-model pic -pic-level 1 -fsemantic-interposition %s -o - | FileCheck %s --check-prefixes=PREEMPT,METADATA
|
|
|
|
/// Traditional half-baked behavior: interprocedural optimizations are allowed
|
|
/// but local aliases are not used.
|
|
// RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -mrelocation-model pic -pic-level 1 -fhalf-no-semantic-interposition %s -o - | FileCheck %s --check-prefixes=PREEMPT,NOMETADATA
|
|
|
|
// CHECK: @var = global i32 0, align 4
|
|
// CHECK: @ext_var = external global i32, align 4
|
|
// CHECK: @ifunc = ifunc i32 (), ptr @ifunc_resolver
|
|
// CHECK: define dso_local i32 @func()
|
|
// CHECK: declare i32 @ext()
|
|
|
|
// PREEMPT: @var = global i32 0, align 4
|
|
// PREEMPT: @ext_var = external global i32, align 4
|
|
// PREEMPT: @ifunc = ifunc i32 (), ptr @ifunc_resolver
|
|
// PREEMPT: define i32 @func()
|
|
// PREEMPT: declare i32 @ext()
|
|
|
|
// METADATA: !{{[0-9]+}} = !{i32 1, !"SemanticInterposition", i32 1}
|
|
// NOMETADATA-NOT: "SemanticInterposition"
|
|
|
|
int var;
|
|
extern int ext_var;
|
|
|
|
int ifunc(void) __attribute__((ifunc("ifunc_resolver")));
|
|
|
|
int func(void) { return 0; }
|
|
int ext(void);
|
|
|
|
static void *ifunc_resolver(void) { return func; }
|
|
|
|
int foo(void) {
|
|
return var + ext_var + ifunc() + func() + ext();
|
|
}
|