Git Product home page Git Product logo

Comments (6)

vygr avatar vygr commented on May 28, 2024

Thank you.

I must upgrade my Linux test VM to 16.04 !

Regards

Chris

from c-pcb.

issalig avatar issalig commented on May 28, 2024

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)

    glfwSetKeyCallback(window, key_callback);
    glfwSetInputMode(window, GLFW_STICKY_KEYS, 1);
   //PATCH STARTS HERE  
   //just after creating context and before using OpenGL
   //http://stackoverflow.com/questions/8302625/segmentation-fault-at-glgenvertexarrays-1-vao
   glewExperimental = GL_TRUE; 
   glewInit();
   //PATCH ENDS HERE 
    //set gl settings
    glGetError();
    glClearColor(0.0, 0.0, 0.0, 0.0);

from c-pcb.

vygr avatar vygr commented on May 28, 2024

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

from c-pcb.

celem avatar celem commented on May 28, 2024

Just as issalig commented on Feb 9, 2017, my compile failed on Linux version 4.14.34-1-MANJARO
I also had to add a a link to libglew.

clang++ -O2 --std=c++14 pkg-config --cflags glfw3 view.cpp mymath.cpp -oview pkg-config --static --libs glfw3 glew

from c-pcb.

vygr avatar vygr commented on May 28, 2024

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

from c-pcb.

vygr avatar vygr commented on May 28, 2024

Adding the:

glewExperimental = GL_TRUE;
glewInit();

Does make it work.

I still think I'll switch over to SDL.

Chris

from c-pcb.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.