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
{{ message }}
This repository was archived by the owner on Nov 10, 2023. It is now read-only.
Having a dependant haskell library will generate a linker command line that contains -Wl,-rpath '-Wl,/path/to/buck-out/gen/some-library/some-library#default,static'
This causes the clang linker to interpret 'static' as a separate path and to fail with: ld: file not found: static
I've fixed this for now by changing the comma to a plus: '#default+static'. Would
it be feasible to change this?