Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

libglfw.so.3: No such file or directory

missing from this list of shared libraries:

$ ldd ./a_final_delivery     
    linux-vdso.so.1 (0x00007ffca883b000)
    libraylib.so.301 => ./libraylib.so.301 (0x00007fde57ae6000)
    libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fde5796c000)
    libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fde57782000)
    libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007fde57760000)
    /lib64/ld-linux-x86-64.so.2 (0x00007fde57d4c000)
    libglfw.so.3 => not found

I know it's annoying but I can't package the entire dependency tree

Don't need to, and some software libraries even forbid you.  For other people who find this thread,  I can leave instructions.  
I had to go to  https://www.glfw.org/download.html to get the missing libglfw.so for Windows or MacOS.  On Debian (including Ubuntu and Mint) try `apt install libglfw3`  On Redhat (including Fedora and CentOS) try `yum install glfw`

Thanks for your suggestions!