## Raylib-Quickstart, the simple solution to get started quickly.
The quickstart is a cross platform template for all desktop platforms that will setup raylib automatically.
@ -221,6 +226,31 @@ Next all you need to do is either specify that install path in the makefile or s
You can append this command to the end of your `~/.bashrc` or `~/.zshrc` or other user login script, to make the change permanent. If you do so you'll be able to compile right away after you relogin. If you don't want to relogin just run `source <YOUR USER LOGIN SCRIPT>`
#### For issues related like not able to link a library like libGL or libGLX in Void Linux, it's probably due to broken symlinks.
The broken symlinks could be checked using below command:
`sudo xbps-pkgdb -a`
The above command will output something similar to below one:
This helps us to know which packages needs to be reinstalled to fix the broken symlink issus. From the above output, it's clear that `libglvnd-devel`, `MesaLib-devel` needs to be reinstalled.
One can you below command to reinstall these packages: