Hello,
So I just upgrade to Ubuntu 14.10 and the change seems to have broken my dev environment. Everything compiles alright but when I run an OF application no window is ever created and nothing happens: no logging or anything. The process just hangs.
I created a new project with the Project Generator and just had that log something in setup() but still nothing. I then ran that program through gdb and got a backtrace:
#0 0x00007ffff4a43380 in __poll_nocancel () at ../sysdeps/unix/syscall-template.S:81
#1 0x00007fffefe15b72 in ?? () from /usr/lib/x86_64-linux-gnu/libxcb.so.1
#2 0x00007fffefe1764f in xcb_wait_for_event () from /usr/lib/x86_64-linux-gnu/libxcb.so.1
#3 0x00007ffff62703a8 in _XReadEvents () from /usr/lib/x86_64-linux-gnu/libX11.so.6
#4 0x00007ffff6258889 in XIfEvent () from /usr/lib/x86_64-linux-gnu/libX11.so.6
#5 0x000000000058396b in createWindow ()
#6 0x000000000058545f in _glfwPlatformCreateWindow ()
#7 0x000000000057dcff in glfwCreateWindow ()
#8 0x000000000042c5d0 in ofAppGLFWWindow::setupOpenGL (this=0xa75990, w=1024, h=768, screenMode=OF_WINDOW)
at ../../../libs/openFrameworks/app/ofAppGLFWWindow.cpp:198
#9 0x0000000000418e26 in ofSetupOpenGL (windowPtr=std::shared_ptr (count 3, weak 0) 0xa75990, w=1024, h=768, screenMode=OF_WINDOW)
at ../../../libs/openFrameworks/app/ofAppRunner.cpp:274
#10 0x00000000004195c9 in ofSetupOpenGL (w=1024, h=768, screenMode=OF_WINDOW) at ../../../libs/openFrameworks/app/ofAppRunner.cpp:328
#11 0x000000000041648e in main () at src/main.cpp:10
I’m honestly not really sure what to make of this. It seems like it’s trying to create the window for the application but cannot do it for some reason.
I tried switching back to GLUT as mentioned in this thread but that didn’t change anything. Same backtrace and everything.
Anyone have any ideas? I’m going to keep trying things but I’m totally dead in the water here. Thanks in advance.