Joseph Teo
02-12-2004, 06:13 AM
When I compile my source code. The below error come up:
gcc -I/usr/X11R6/include/ -o myWindow -L/usr/X11R6/lib -L/usr/lib/libglut.so.3
myWindow.o -lGL -lGLU -lX11 -lXmu -lXi -lXext -lm
myWindow.o: In function `main':
myWindow.o(.text+0xa5): undefined reference to `glutInit'
myWindow.o(.text+0xb2): undefined reference to `glutInitDisplayMode'
myWindow.o(.text+0xc7): undefined reference to `glutInitWindowSize'
myWindow.o(.text+0xd9): undefined reference to `glutInitWindowPosition'
myWindow.o(.text+0xe9): undefined reference to `glutCreateWindow'
myWindow.o(.text+0xf9): undefined reference to `glutDisplayFunc'
myWindow.o(.text+0x109): undefined reference to `glutMouseFunc'
myWindow.o(.text+0x116): undefined reference to `glutMainLoop'
collect2: ld returned 1 exit status
make: *** [myWindow] Error 1
Any idea how to solve this undefined reference to 'glut***'?
gcc -I/usr/X11R6/include/ -o myWindow -L/usr/X11R6/lib -L/usr/lib/libglut.so.3
myWindow.o -lGL -lGLU -lX11 -lXmu -lXi -lXext -lm
myWindow.o: In function `main':
myWindow.o(.text+0xa5): undefined reference to `glutInit'
myWindow.o(.text+0xb2): undefined reference to `glutInitDisplayMode'
myWindow.o(.text+0xc7): undefined reference to `glutInitWindowSize'
myWindow.o(.text+0xd9): undefined reference to `glutInitWindowPosition'
myWindow.o(.text+0xe9): undefined reference to `glutCreateWindow'
myWindow.o(.text+0xf9): undefined reference to `glutDisplayFunc'
myWindow.o(.text+0x109): undefined reference to `glutMouseFunc'
myWindow.o(.text+0x116): undefined reference to `glutMainLoop'
collect2: ld returned 1 exit status
make: *** [myWindow] Error 1
Any idea how to solve this undefined reference to 'glut***'?