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
Brief: Fix use of distinct on macOS lflags with -framework
Summary: Current code uses `distinct` to generate a unique list
off lflags for linking executables. This fails on macOS when
linking to a framework with flags like:
["-Lfoo" "-lbar" "-lfoo" "-framework" "Cocoa" "-framework" "OpenGL" "-lbar" "-framework" "Cocoa"]
`distinct` generates:
@["-Lfoo" "-lbar" "-lfoo" "-framework" "Cocoa" "OpenGL"]
where `-framework` is missing for OpenGL.
0 commit comments