CSEngineer wrote: > I am having difficulties with running some opengl sample programs on > cygwin. I have installed the opengl package distributed with cygwin. > ##################################################################### > $ gcc -g -o abgr.c -lopengl32 -lglut32 -lglu32 -----------^^^^^^^^^ You are having difficulties because you don't know how to compile a simple program.
Does this look better to you? gcc -g -o abgr abgr.c -lopengl32 -lglut32 -lglu32 -- René Berber -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/