From 11ca13e252f929936e2bf8414c3e25128db6e1fa Mon Sep 17 00:00:00 2001 From: mykykh <49101849+mykykh@users.noreply.github.com> Date: Wed, 18 Dec 2024 19:00:25 +0200 Subject: [PATCH] Running ldconfig after cmake install solves: could not find libraylib.so --- Working-on-GNU-Linux.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Working-on-GNU-Linux.md b/Working-on-GNU-Linux.md index b929b7e..efe1ca0 100644 --- a/Working-on-GNU-Linux.md +++ b/Working-on-GNU-Linux.md @@ -91,6 +91,7 @@ mkdir build && cd build cmake -DBUILD_SHARED_LIBS=ON .. make sudo make install +sudo ldconfig ``` In case any dependencies are missing, cmake will tell you.