gcc cannot find -lglfw3
c, gcc, glfw
Solution
I completely forgot about this question until I got a notification for it. For me the solution was to not use `-lglfw3` but rather use `-lglfw`
Problem
I'm on a linux system (arch linux specifically) and I'm trying to compile the introduction project from the official glfw page but I cannot seem to get gcc to compile it. If anyone doesn't know what I'm talking about it's this. Also this is how I'm trying to compile it: ``` gcc -Iinclude test.c -o test -lglfw3 -lm -lGL -lGLU ``` and it gives me the following errors: ``` /usr/bin/ld: cannot find -lglfw3 collect2: error: ld returned 1 exit status ```