Re: gcc, opengl, glut, GL & GLU

2002-11-23 Thread Nigel Stewart & Fiona Smith
Samuel, Make sure you've downloaded and installed opengl-1.1.0-6.tar.bz2, under "opengl". It may not be included by default. Cheers, Nigel Stewart GL GLU glut I have tried with : gcc -o file -Wall -lglut -lGL -lGLU file.c -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-si

Re: gcc, opengl, glut, gl & glu

2002-11-23 Thread James Shaw
> Can you tell me how to compile a C file which use the > following libraries : > GL,GLU,glut > I have tried with : > gcc -o file -Wall -lglut -lGL -lGLU file.c Hi Samuel, No problem. My Makefile has: gcc hellogl.cpp -o hellogl -lglut32 -lglu32 -lopengl32 -mno-cygwin __