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
mkdir build && cd build
cmake -DLIB_INSTALL_DIR=/usr/lib64 ..
make -j`nproc` install
the library should be installed to /usr/lib64. Instead, a warning is printed that LIB_INSTALL_DIR is not used by the project, and the library ends up in /usr/local/lib64.
A workaround for this is instead to install like so:
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make -j`nproc` install
However, we should probably sort this out so that LIB_INSTALL_DIR is respected.
The text was updated successfully, but these errors were encountered:
When trying to install LotMan with
the library should be installed to
/usr/lib64
. Instead, a warning is printed thatLIB_INSTALL_DIR
is not used by the project, and the library ends up in/usr/local/lib64
.A workaround for this is instead to install like so:
However, we should probably sort this out so that
LIB_INSTALL_DIR
is respected.The text was updated successfully, but these errors were encountered: