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
fix(ci): create musl-g++ wrapper so z3 compiles against musl headers
Using system g++ directly produces object files with glibc symbols
like __printf_chk that don't exist in musl. Instead, create a musl-g++
wrapper that mirrors musl-gcc: it invokes g++ with the musl-gcc.specs
file, which redirects include and library paths to musl. This ensures
z3 compiles against musl headers and avoids glibc symbol references.
0 commit comments