Archived
d3495476f4
El SDK Release / build-and-release (push) Failing after 13m0s
The generated C, amalgams, vendored runtime pins, and compiled binaries from the Claude Code era are removed from the worktree. The El sources survive; this tree is now source-only for the first-principles rebuild. Per Principal direction 2026-08-19.
24 lines
1.2 KiB
Batchfile
24 lines
1.2 KiB
Batchfile
bash -c
|
|
echo "CLAIM (28d19da): injects_at_entry removed, guards_at_entry removed,"
|
|
echo "injects_at_exit STRUCTURAL, wraps_body structural, prohibits_outside #error."
|
|
echo
|
|
echo "=== occurrences of each declaration kind in codegen.el, parent -> commit ==="
|
|
printf "%-20s %8s %8s\n" kind "886626a" "28d19da"
|
|
for k in injects_at_entry guards_at_entry injects_at_exit wraps_body prohibits_outside; do
|
|
a=$(git show "886626a:lang/el-compiler/src/codegen.el" | grep -c "$k" || true)
|
|
b=$(git show "28d19da:lang/el-compiler/src/codegen.el" | grep -c "$k" || true)
|
|
printf "%-20s %8s %8s\n" "$k" "$a" "$b"
|
|
done
|
|
echo
|
|
echo "=== same, in the whole compiler src tree ==="
|
|
printf "%-20s %8s %8s\n" kind "886626a" "28d19da"
|
|
for k in injects_at_entry guards_at_entry injects_at_exit wraps_body prohibits_outside; do
|
|
a=$(git grep -c "$k" 886626a -- lang/el-compiler/src 2>/dev/null | awk -F: "{s+=\$NF} END{print s+0}")
|
|
b=$(git grep -c "$k" 28d19da -- lang/el-compiler/src 2>/dev/null | awk -F: "{s+=\$NF} END{print s+0}")
|
|
printf "%-20s %8s %8s\n" "$k" "$a" "$b"
|
|
done
|
|
echo
|
|
echo "=== the 65 removed / 4 added lines of codegen.el at 28d19da ==="
|
|
git diff "28d19da^" 28d19da -- lang/el-compiler/src/codegen.el
|
|
|