Probleme OpenGL en C [LINUX] - Débats - Linux et OS Alternatifs
Marsh Posté le 20-10-2002 à 18:23:50
il manque &argc,argv); après glutinit (
C'est une question de C, pas sur un OS Alternatif
Marsh Posté le 20-10-2002 à 18:30:55
nop c pas ca parce ke si tu veux c plutot comme ca :
Code :
|
et si je met ); j'ai le droit a l'erreur :
ogl1.c: In function `main':
ogl1.c:19: too few arguments to function `glutInit'
Marsh Posté le 20-10-2002 à 18:32:42
Astro a écrit a écrit : nop c pas ca parce ke si tu veux c plutot comme ca : |
non.
Tu connais le C ?
http://linuxgraphic.org/section3d/ [...] idac8.html
Marsh Posté le 20-10-2002 à 18:33:32
Mets ca:
glutInit(&argc, &argv);
glutInitDisplayMode(GLUT_RGB);
glutInitWindowPosition(200,200);
glutInitWindowSize(250,250);
etc.
Marsh Posté le 20-10-2002 à 18:38:13
axey a écrit a écrit : Mets ca: glutInit(&argc, &argv); glutInitDisplayMode(GLUT_RGB); glutInitWindowPosition(200,200); glutInitWindowSize(250,250); etc. |
encore une erreur :
ogl1.c: In function `main':
ogl1.c:19: warning: passing arg 2 of `glutInit' from incompatible pointer type
/usr/bin/ld: cannot find -lglut
collect2: ld returned 1 exit status
Marsh Posté le 20-10-2002 à 18:40:35
Pour le warning, c'est argv, pas &argv pour glutInit
Pour la seconde, je te dit la réponse après avoir booté la debian
Marsh Posté le 20-10-2002 à 18:45:45
apt-get install glutg3
Marsh Posté le 20-10-2002 à 18:57:57
kadreg a écrit a écrit : non. Tu connais le C ? http://linuxgraphic.org/section3d/ [...] idac8.html |
sur le pdf qu'ils proposent en téléchargement il y a le code que j'ai mis au début du topic.
En faisant un gcc tout simple j'ai:
astro@hdb-draco:~/prog$ gcc ogl1.c
/tmp/ccZxh8hG.o: In function `main':
/tmp/ccZxh8hG.o(.text+0x12): undefined reference to `glutInit'
/tmp/ccZxh8hG.o(.text+0x1f): undefined reference to `glutInitDisplayMode'
/tmp/ccZxh8hG.o(.text+0x34): undefined reference to `glutInitWindowPosition'
/tmp/ccZxh8hG.o(.text+0x49): undefined reference to `glutInitWindowSize'
/tmp/ccZxh8hG.o(.text+0x59): undefined reference to `glutCreateWindow'
/tmp/ccZxh8hG.o(.text+0x69): undefined reference to `glClearColor'
/tmp/ccZxh8hG.o(.text+0x83): undefined reference to `glColor3f'
/tmp/ccZxh8hG.o(.text+0x9a): undefined reference to `glPointSize'
/tmp/ccZxh8hG.o(.text+0xaa): undefined reference to `glutDisplayFunc'
/tmp/ccZxh8hG.o(.text+0xba): undefined reference to `glutKeyboardFunc'
/tmp/ccZxh8hG.o(.text+0xc2): undefined reference to `glutMainLoop'
/tmp/ccZxh8hG.o: In function `affichage':
/tmp/ccZxh8hG.o(.text+0xe3): undefined reference to `glClear'
/tmp/ccZxh8hG.o(.text+0xf0): undefined reference to `glBegin'
/tmp/ccZxh8hG.o(.text+0x104): undefined reference to `glColor3f'
/tmp/ccZxh8hG.o(.text+0x127): undefined reference to `glVertex2f'
/tmp/ccZxh8hG.o(.text+0x13b): undefined reference to `glColor3f'
/tmp/ccZxh8hG.o(.text+0x15e): undefined reference to `glVertex2f'
/tmp/ccZxh8hG.o(.text+0x172): undefined reference to `glColor3f'
/tmp/ccZxh8hG.o(.text+0x195): undefined reference to `glVertex2f'
/tmp/ccZxh8hG.o(.text+0x1af): undefined reference to `glColor3f'
/tmp/ccZxh8hG.o(.text+0x1d2): undefined reference to `glVertex2f'
/tmp/ccZxh8hG.o(.text+0x1da): undefined reference to `glEnd'
/tmp/ccZxh8hG.o(.text+0x1df): undefined reference to `glFlush'
/tmp/ccZxh8hG.o: In function `clavier':
/tmp/ccZxh8hG.o(.text+0x22e): undefined reference to `glPolygonMode'
/tmp/ccZxh8hG.o(.text+0x236): undefined reference to `glutPostRedisplay'
/tmp/ccZxh8hG.o(.text+0x24e): undefined reference to `glPolygonMode'
/tmp/ccZxh8hG.o(.text+0x256): undefined reference to `glutPostRedisplay'
/tmp/ccZxh8hG.o(.text+0x26e): undefined reference to `glPolygonMode'
/tmp/ccZxh8hG.o(.text+0x276): undefined reference to `glutPostRedisplay'
collect2: ld returned 1 exit status
Marsh Posté le 20-10-2002 à 19:00:56
http://linuxgraphic.org/section3d/ [...] idac7.html
Marsh Posté le 20-10-2002 à 19:02:10
kadreg a écrit a écrit : Pour le warning, c'est argv, pas &argv pour glutInit Pour la seconde, je te dit la réponse après avoir booté la debian |
j'ai eu cette erreur car je fais ca :
gcc ogl1.c -o ogl -L/usr/X11R6/lib -lGL -lGLU -lglut -lX
11 -lXmu -lXi -lm
mais je sais pas si s'est obligatoire?
Marsh Posté le 20-10-2002 à 19:04:49
AsTro a écrit a écrit : mais je sais pas si s'est obligatoire? |
Si, puisque tu utilises les fonctions de glut.
Tu as bien installé glut au moins ?
apt-get install glutg3
Marsh Posté le 20-10-2002 à 19:21:08
kadreg a écrit a écrit : Si, puisque tu utilises les fonctions de glut. Tu as bien installé glut au moins ? apt-get install glutg3 |
Oui m'sieur c installé pourtant mais me manque ptet un truc
Marsh Posté le 20-10-2002 à 19:59:50
Plus personne pour me dire pourquoi j'ai cette erreur :
/usr/bin/ld: cannot find -lglut
collect2: ld returned 1 exit status
Marsh Posté le 20-10-2002 à 21:14:04
Il se trouve ou, ton fichier libglut.so?
Marsh Posté le 20-10-2002 à 21:33:50
je n'ai qu'un fichier libglut.so.3 pas de .so tout court.
et il est dans /usr/lib.
et jai fait gcc -L/usr/lib masi ca marche pas non plus.
Marsh Posté le 20-10-2002 à 22:24:45
les so.3 et les so s'est la meme chose?
j'ai fait ldconfig mais ca a rien changer.
il doit me renvoyer quelque chose à l'écran ldconfig?
aussi dans /etc/ld.so.conf j'avais :
/usr/X11R6/lib
et j'ai ajouté :
/usr/lib
Marsh Posté le 21-10-2002 à 13:21:13
Tu n'es pas vraiment où il faut ici !
Sinon tu peux essayer de faire un :
ln -s /usr/lib/libglut.so.3 /usr/lib/libglut.so
On ne sait jamais...
Marsh Posté le 20-10-2002 à 18:22:25
Je susi sous debian, j'ai bien installé Mesa pour avoir les librairies opengl, j'ai suivi le 1er tuto sur linuxgraphic.org et j'ai l'erreur :
ogl1.c: In function `main':
ogl1.c:20: parse error before `;'
lors de la compilation du fichier suivant (voici le debut):
je comprend pas je n'ai fait que recopier leur fichier d'exemple.
Si quelqu'un pouvait m'aider ca serait tres sympa
Message édité par AsTro le 20-10-2002 à 18:24:20