Commit 2ee71da
crispasr integration
fix(go): regenerate cgo LDFLAGS with the tool instead of hand-merging them
The merge conflicted on bindings/go/whisper.go because both branches add a
library, and I resolved it by hand as a union. The set was right — the tool's
output has the same 114 libraries, none added, none removed — but the ORDER
differed, and the drift gate is a byte comparison of the generated line. That
failed two jobs: "Bindings Tests (Go) / cgo-ldflags-drift" and the CI backend
wiring audit, whose only remaining cause was "Go cgo LDFLAGS drift".
This line is GENERATED from the CMake dependency graph by
tools/sync_go_cgo_ldflags.py, so a hand-merge can only ever be right by luck:
link order is a topological property of the graph, and adding two libraries
changes where existing ones sort. Regenerated properly via cmake --graphviz.
Verified with the tool's own gate rather than by eye:
`sync_go_cgo_ldflags.py --check --dot <generated>` now reports "whisper.go
LDFLAGS are up to date" and exits 0.1 parent 6fcc869 commit 2ee71da
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
33 | | - | |
| 32 | + | |
| 33 | + | |
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| |||
0 commit comments