Others Blackhope [2024-07-10] [Blackcap]

4.00 star(s) 5 Votes

YMFVH

Newbie
Jul 2, 2023
18
19
Looks like Debian's apt is one of the few packages managers they , so you'll have to compile from source.
It's been years since I used Debian, so bear with me if I get the package names wrong here, but the commands should be:

Code:
sudo apt install cmake git
git clone https://github.com/raysan5/raylib.git
cd raylib; mkdir build; cd build
cmake -DBUILD_SHARED_LIBS=ON
make
sudo make install
cd ../../
rm -rf raylib
sudo ln -sr /usr/lib/libraylib.so.5.5.0 /usr/lib/libraylib.so.450
Then try running the game again
 
Last edited:

smismi

New Member
Mar 29, 2020
3
0
Looks like Debian's apt is one of the few packages managers they , so you'll have to compile from source.
It's been years since I used Debian, so bear with me if I get the package names wrong here, but the commands should be:

Code:
sudo apt install cmake git
git clone https://github.com/raysan5/raylib.git
cd raylib; mkdir build; cd build
cmake -DBUILD_SHARED_LIBS=ON
make
sudo make install
cd ../../
rm -rf raylib
sudo ln -sr /usr/lib/libraylib.so.5.5.0 /usr/lib/libraylib.so.450
Then try running the game again
Thanks. That was helpful. There were a bunch of issues though during build. First I had to run those commands in raylib dir and not raylib/build. Second, I had to install a bunch of -dev libraries and build-essential package, and few more, I guess. And also the final softlink for me was in /usr/local/lib directory. At the end the compile and linking was successful. So, thanks again.
 
4.00 star(s) 5 Votes