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(Makefile): use platform-specific LDLIBS for system libraries
Move -ldl -lm to LDLIBS variable set per-platform:
- Linux/Darwin: -ldl -lm (dynamic loading and math)
- Windows: empty (Win32 API for dyn load, math linked by default)
This fixes the Windows CI build which failed with "cannot find -ldl".
0 commit comments