• libGL.so compil problem

    From time to time, on my ubuntu 11.10, i have link error like “undefined reference to glGetQueryObjectui64v”. This is because an unidentify package update break libGL.so symlink in /usr/lib or /usr/lib/x86_64-linux-gnu The best solution I found is to manually “sudo rm libGL.so libGL.so.1” and to “ln -s nvidia-current/libGL.so .” in usr/lib and “ln -s ../libGL.so […]

    [read more]


    Category , ,

  • Release and Debug with Cmake and QtCreator

    I have used qmake for a while and the debug_and_release facilities to have both debug and release version of my code (with different executable, different build tress …) Now I use cmake and qtcreator on a regular basis, to obtain the same behavior I have found the following approach : in my CMakeLists.txtm something like […]

    [read more]


    Category