4 réponses
dubcek
Messages postés
18755
Date d'inscription
lundi 15 janvier 2007
Statut
Contributeur
Dernière intervention
14 novembre 2024
5 622
10 avril 2008 à 16:54
10 avril 2008 à 16:54
et avec
#include <mqueue.h>
en début de fichier ?
#include <mqueue.h>
en début de fichier ?
dubcek
Messages postés
18755
Date d'inscription
lundi 15 janvier 2007
Statut
Contributeur
Dernière intervention
14 novembre 2024
5 622
10 avril 2008 à 17:39
10 avril 2008 à 17:39
essayer avec gcc -E pour voir s il inclut le fichier
Alors la il arrive a compiler mais alors au lancement il me fait de la grosse merde, genre ca :
./com: line 22: typedef: command not found
./com: line 35: typedef: command not found
./com: line 36: typedef: command not found
./com: line 37: typedef: command not found
./com: line 38: typedef: command not found
./com: line 41: typedef: command not found
./com: line 42: typedef: command not found
./com: line 43: typedef: command not found
./com: line 44: typedef: command not found
./com: line 45: typedef: command not found
./com: line 46: typedef: command not found
./com: line 51: __extension__: command not found
./com: line 52: __extension__: command not found
./com: line 60: __extension__: command not found
./com: line 61: __extension__: command not found
./com: line 71: __extension__: command not found
./com: line 72: __extension__: command not found
./com: line 73: __extension__: command not found
./com: line 74: __extension__: command not found
./com: line 75: __extension__: command not found
./com: line 76: __extension__: command not found
./com: line 77: __extension__: command not found
./com: line 78: __extension__: command not found
./com: line 79: __extension__: command not found
./com: line 80: __extension__: command not found
./com: line 81: syntax error near unexpected token `}'
./com: line 81: `__extension__ typedef struct { int __val[2]; } __fsid_t;'
J'sais pas si ca t'inspire quelque chose ...
./com: line 22: typedef: command not found
./com: line 35: typedef: command not found
./com: line 36: typedef: command not found
./com: line 37: typedef: command not found
./com: line 38: typedef: command not found
./com: line 41: typedef: command not found
./com: line 42: typedef: command not found
./com: line 43: typedef: command not found
./com: line 44: typedef: command not found
./com: line 45: typedef: command not found
./com: line 46: typedef: command not found
./com: line 51: __extension__: command not found
./com: line 52: __extension__: command not found
./com: line 60: __extension__: command not found
./com: line 61: __extension__: command not found
./com: line 71: __extension__: command not found
./com: line 72: __extension__: command not found
./com: line 73: __extension__: command not found
./com: line 74: __extension__: command not found
./com: line 75: __extension__: command not found
./com: line 76: __extension__: command not found
./com: line 77: __extension__: command not found
./com: line 78: __extension__: command not found
./com: line 79: __extension__: command not found
./com: line 80: __extension__: command not found
./com: line 81: syntax error near unexpected token `}'
./com: line 81: `__extension__ typedef struct { int __val[2]; } __fsid_t;'
J'sais pas si ca t'inspire quelque chose ...
dubcek
Messages postés
18755
Date d'inscription
lundi 15 janvier 2007
Statut
Contributeur
Dernière intervention
14 novembre 2024
5 622
10 avril 2008 à 18:02
10 avril 2008 à 18:02
quelssont les include appellés au début du fichier ?
dubcek
Messages postés
18755
Date d'inscription
lundi 15 janvier 2007
Statut
Contributeur
Dernière intervention
14 novembre 2024
5 622
10 avril 2008 à 19:23
10 avril 2008 à 19:23
essayer de compiler un tout petit programme avec ces includes:
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <mqueue.h>
#include <string.h>
main (){}
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <mqueue.h>
#include <string.h>
main (){}
10 avril 2008 à 17:34
En fait j'ai fait le include en début du programme, en fait c'est comme si il me trouvait pas la bibliothéque alors qu'elle est dans le répertoire avec toutes les autres :(