static compile glfw
问题 I'm trying to compile glfw as static link on Linux Mint (based on Ubuntu 10.04) using GCC 4.4.3. Inside my project directory i got "external/glfw" which contains glfw 2.7.1 source. I've compiled it by running "make x11-install" which gives: /usr/local/include/GL/glfw.h /usr/local/lib/libglfw.a /usr/local/lib/pkgconfig/libglfw.pc i also got this simple code in test.c: #include <stdio.h> #include <stdlib.h> #include "external/glfw/include/GL/glfw.h" int main( int argc, char const* argv[] ) { if