GLFW3
Last night I was working late trying to build the GLFW 3 packages for Linux from source. This process took me a very long time, about 3 hours in total, partly because I am unfamiliar with CMake, and partly because I am was unfamiliar with GLFW.
I hope that this post will save you from the difficulty I had yesterday! I thought I should make a short write-up, and hopefully save you several hours of your life...
Thanks to "urraka", "b6" and "niklas" on the #glfw IRC channel, I have been able to get glfw version 3.0.1 working.
It turns out this is not a trivial process (certainly not for me, I am no expert) as there is not much documentation on the web about glfw3, particularly about setting it up with CMake.
I was asked to split this into a question and answer section, and so I have done that, and the answer parts are now below.
Are you a maintainer of GLFW, or a member of the GLFW team?
If any of the maintainers of GLFW3 see this, then my message to them is please add a "setting up GLFW3 on Windows, Mac OS X and Linux" section to your website! It is quite easy to write programs with GLFW, since the online documentation is quite good, a quick scan of all the available classes and modules and you'll be ready to go. The example of a test project featured here is also very good. The two main problems I found were, firstly how do I set up GLFW3 on my system, and secondly how to I build a GLFW3 project? These two things perhaps aren't quite clear enough for a non-expert.
Edit
Had a brief look today (Date: 2014-01-14) it looks as if the GLFW website has undergone heavy changes since I last looked and there is now a section on compiling GLFW and buliding programs with GLFW, which I think are new.
Step 1: Installing GLFW 3 on your system with CMAKE
For this install, I was using KUbuntu 13.04, 64bit.
The first step is to download the latest version (assuming versions in the future work in a similar way) from www.glfw.org, probably using this link.
The next step is to extract the archive, and open a terminal.
cd
into the glfw-3.X.X directory and runcmake -G "Unix Makefiles"
you may need elevated privileges, and you may also need to install build dependencies first. To do this, trysudo apt-get build-dep glfw
orsudo apt-get build-dep glfw3
or do it manually, as I did usingsudo apt-get install cmake xorg-dev libglu1-mesa-dev
... There may be other libs you require such as the pthread libraries... Apparently I had them already. (See the -l options given to the g++ linker stage, below.)Now you can type
make
and thenmake install
, which will probably require you tosudo
first.Okay, you should get some verbose output on the last three CMake stages, telling you what has been built or where it has been placed. (In
/usr/include
, for example.)Step 2: Create a test program and compile
The next step is to fire up vim ("what?! vim?!" you say) or your preferred IDE / text editor... I didn't use vim, I used Kate, because I am on KUbuntu 13.04... Anyway, download or copy the test program from here (at the bottom of the page) and save, exit.
Now compile using
g++ -std=c++11 -c main.cpp
- not sure if c++11 is required but I usednullptr
so, I needed it... You may need to upgrade your gcc to version 4.7, or the upcoming version 4.8... Info on that here.Then fix your errors if you typed the program by hand or tried to be "too clever" and something didn't work... Then link it using this monster!
g++ main.o -o main.exec -lGL -lGLU -lglfw3 -lX11 -lXxf86vm -lXrandr -lpthread -lXi
So you see, in the "install build dependencies" part, you may also want to check you have the GL, GLU, X11 Xxf86vm (whatever that is) Xrandr posix-thread and Xi (whatever that is) development libraries installed also. Maybe update your graphics drivers too, I think GLFW 3 may require OpenGL version 3 or higher? Perhaps someone can confirm that? You may also need to add the linker options-ldl -lXinerama -lXcursor
to get it to work correctly if you are getting undefined references todlclose
(credit to @user2255242).And, yes, I really did need that many
-l
s!Step 3: You are finished, have a nice day!
Hopefully this information was correct and everything worked for you, and you enjoyed writing the GLFW test program. Also hopefully this guide has helped, or will help, a few people in the future who were struggling as I was
todayyesterday!By the way, all the tags are the things I searched for on stackoverflow looking for an answer that didn't exist. (Until now.) Hopefully they are what you searched for if you were in a similar position to myself.
Note that you do not need that many
-l
s if you install glfw with theBUILD_SHARED_LIBS
option. (You can enable this option by runningccmake
first).This way
sudo make install
will install the shared library in/usr/local/lib/ligglfw.so
. You can then compile the example file with a simple:Then do not forget to add /usr/local/lib/ to the search path for shared libraries before running your program. This can be done using:
And you can put that in your ~/.bashrc so you don't have to type it all the time.
Since the accepted answer does not allow more edits, I'm going to summarize it with a single copy-paste command (Replace 3.2.1 with the latest version available in the first command):
If you want to compile a program use the following commands:
If you are following the learnopengl.com tutorial you may have to set up GLAD as well. In such case click on this link
http://glad.dav1d.de/#profile=core&specification=gl&api=gl%3D3.3&api=gles1%3Dnone&api=gles2%3Dnone&api=glsc2%3Dnone&language=c&loader=on
and then click on the "Generate" button at the bottom right corner of the website and download the zip file. Extract it and compile the sources with the following command:
Now, the commands to compile your program become like this:
Great guide, thank you. Given most instructions here, it almost built for me but I did have one remaining error.
After searching for this error, I had to add
-ldl
to the command line.Then the "hello GLFW" sample app compiled and linked.
I am pretty new to linux so I am not completely certain what exactly this extra library does... other than fix my linking error. I do see that cmd line switch in the post above, however.
I solved it in this way
A pkg-config file describes all necessary compile-time and link-time flags and dependencies needed to use a library.
shows me that
I don't know if all these libs are actually necessary for compiling but for me it works...
If anyone's getting lazy and maybe perhaps doesn't know how to configure shell for all those libraries and -ls, then I created a python script(you have to have python3, most linux users have it.) that allows you to easily compile scripts and run them without worrying much, it just has regular system calls, just arranged neatly, I created it for my self but maybe it'd be useful: Here it is