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
Fedora and other Linux distributions tend to use `lib64` as the library
directory and when building and installing the native library with CMake
the directory structure in the prefix conforms to this standard.
This makes the linking fail since the search directory for `libnng` is
set to `lib`.
This patch renames `lib64` to `lib` in the install directory. There are
no checks performed beforehand since the Rust API already checks that
the operation can be performed, and if the rename fails then the
directory name is already correct.
The same issue is also present for `mbedtls` and was fixed there as
well.
0 commit comments