You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use gcc-7.5.0/8.5.0 as host compilers with correct version bands (#45)
SS_Stack was introduced in gcc 8's Ada runtime and bindgen.adb, so
gcc-8.5.0's gnatbind generates SS_Stack references — incompatible with
gcc 5-7 Ada runtimes. Correct the version bands:
MAJOR <= 7 : gcc-7.5.0 (bindgen predates SS_Stack)
MAJOR 8-10 : gcc-8.5.0 (bindgen has SS_Stack; no __gnat_begin_handler_v1)
Replaces gcc-9.4.0 (no longer needed) with gcc-7.5.0 in the Dockerfile.
🤖 Generated by LLM (Claude, via OpenClaw)
Co-authored-by: mattgodbolt-molty <mattgodbolt-molty@users.noreply.github.com>
0 commit comments