Starting off with OpenGL under Cygwin

Is it possible to compile and run OpenGL programs from under Cygwin? If yes, how?


It is possible to compile and run OpenGL programs under Cygwin. I illustrate the basic steps here:

  • I assume you know OpenGL programming. If not, get the Red Book (The OpenGL Programming Guide). It is mandatory reading for OpenGL anyway.

  • I assume you have Cygwin installed. If not, visit cygwin.com and install it.

  • To compile and run OpenGL programs, you need the Cygwin package named opengl . In the Cygwin installer, it can be found under the Graphics section. Please install this package.

  • Write a simple OpenGL program, say ogl.c.

  • Compile the program using the flags -lglut32 -lglu32 -lopengl32 . (This links your program with the GLUT, GLU and OpenGL libraries. An OpenGL program might typically use functions from all the 3 of them.) For example:

    $ gcc ogl.c -lglut32 -lglu32 -lopengl32

  • Run the program. It's as simple as that!


  • If the above doesn't work (and it didn't for me), try the following (which did!)

    gcc ogl.c -lglut -lglu -lgl


    I remember doing this once with some success, a few years ago, basically trying to cross compile a small Linux OpenGL C++ program. I do recall problems with Windows OpenGL drivers being behind the times (due to MS's focus on DirectX). I had NVidia OpenGL and DirectX drivers installed on my Windows system, but cygwin/g++ seemed to want to only use the Microsoft OpenGL DLLs, many years old, which do not have the latest support for all the ARB extensions, like shader programs, etc. YMMV.

    链接地址: http://www.djcxy.com/p/61786.html

    上一篇: 如何使用Cygwin导航到C:\中的目录?

    下一篇: 从Cygwin下的OpenGL开始