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
- switched from CHECK_INCLUDE_FILE to CHECK_LIBRARY_EXISTS
fixes detection issue of readline on archlinux due to
missing imports (unknown type FILE)
- discovering tinfo using CHECK_LIBRARY_EXISTS
the result is used in the discovery of readline as the same
error as discussed in walterschell#32 prevented the
detection of readline
I crosscompiled to arm64 debian bookworm and came across a linker error:
ld.lld: error: undefined symbol: tputs
some other symbols were missing as well. Adding tinfo as a target link libarary fixes these compile errors.
I added
target_link_libraries(lua PUBLIC tinfo)
just belowtarget_link_libraries(lua PUBLIC readline)
.I can create a pull request if you prefer it that way.
The text was updated successfully, but these errors were encountered: