How do I link GLFW

后端 未结 2 1754
慢半拍i
慢半拍i 2021-01-24 02:11

I am trying to link GLFW to my C program.

The docs seem to suggest #include however I have installed 2.7.2 (from my distro\'s repository

相关标签:
2条回答
  • 2021-01-24 02:34

    You are mixing up compilation and linking. If you were missing headers, you would probably have errors a lot sooner than the linking stage.

    "Undefined reference" results from symbols not being found by the linker. The most likely cause is you not telling gcc that it should link to the GLFW libraries:

     gcc myfile.c -lglfw
    
    0 讨论(0)
  • 2021-01-24 02:42

    An #include does nothing for the linker; it just brings in declarations, not the actual functions.

    The documentation indicates that GLFW uses pkg-config (not surprising; @elmindreda knows her stuff), so your compilation line should be something like:

    $ cc `pkg-config --cflags glfw3` -o foo foo.c `pkg-config --static --libs glfw3`
    

    Also note that since the library uses pkg-config, you're not supposed to "care" about details such as where the header and library files are located on your particular installation. Just ask using the --cflags and --libs modes, and you will get the proper locations returned, as the example above indicates.

    0 讨论(0)
提交回复
热议问题