-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Link to glew #3
Comments
Thank you. I must upgrade my Linux test VM to 16.04 ! Regards Chris |
Also I had to call glewExperimental and glewInit in view.cpp to make it work. It seems to be sth related to my glew version (Ubuntu 16.04, GLEW version 1.13.0, OpenGL version 3.0 Mesa 11.2.0 is supported)
|
I've been thinking of porting over to use SDL2 rather than glfw3. I'm using that, SDL2, for other projects, and I think that would open the door to an easy Windows version of the PCB solver. Chris |
Just as issalig commented on Feb 9, 2017, my compile failed on Linux version 4.14.34-1-MANJARO clang++ -O2 --std=c++14 pkg-config --cflags glfw3 view.cpp mymath.cpp -oview pkg-config --static --libs glfw3 glew |
I got things to build on an Ubuntu VM after installing the libglew-dev and libglfw3-dev packages. And yes on that platforms it does SEGFAULT. So somthing to look at. I wonder how others have managed to run it on Linux. I've never tried before myself as this was a Mac OSX project initially. However, this makes me think I need to switch over to useing SDL rather than glfw3 as I'm not happy with glw3 even on the Mac platform. Chris |
Adding the: glewExperimental = GL_TRUE; Does make it work. I still think I'll switch over to SDL. Chris |
On Ubuntu 16.04 I need to add a a link to libglew.
clang++ -O2 --std=c++14
pkg-config --cflags glfw3
view.cpp mymath.cpp -oviewpkg-config --static --libs glfw3 glew
The text was updated successfully, but these errors were encountered: