Tuesday, February 5, 2013

Qt: "cannot find -lGL" when linking, Fedora

When linking q project in qt on fedora system i saw the error "cannot find -lGL" , and after investigation i found that the IDE is searching for libGL.so while my library name on the system is called libGL.so.1 , so i just created a soft link  with .so ln -s /usr/lib/libGL.so.1 /usr/lib/libGL.so and then everything worked fine.

No comments:

Post a Comment