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
The file tests/setup.py.in passes an include_dirs but no library_dirs argument. This caused ld: -lrecode not found errors while I was building under GNU Guix. Adding library_dirs=['../src/.libs'] fixed the issue. (A cleaner solution would do that in a parameterized way akin to how include_dirs is set, I suppose. I'm leaving it up to you.)
The text was updated successfully, but these errors were encountered:
The file
tests/setup.py.in
passes aninclude_dirs
but nolibrary_dirs
argument. This causedld: -lrecode not found
errors while I was building under GNU Guix. Addinglibrary_dirs=['../src/.libs']
fixed the issue. (A cleaner solution would do that in a parameterized way akin to howinclude_dirs
is set, I suppose. I'm leaving it up to you.)The text was updated successfully, but these errors were encountered: