Advertisement
Weegee

Untitled

Aug 17th, 2011
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. make -C src/
  2. make[1]: Entering directory `/home/weegee/docs/projekte/c/ascii-combat/src'
  3. gcc -Wall -Wextra -Wformat=2 -Wswitch-default -Wcast-align -Wpointer-arith -Wbad-function-cast -Wstrict-prototypes -Winline -Wundef -Wnested-externs -Wcast-qual -Wshadow -Wwrite-strings -Wconversion -Wunreachable-code -Wstrict-aliasing=2 -ffloat-store -fno-common -fstrict-aliasing -std=c89 -pedantic -O0 -ggdb3 -pg -c -o console.o console.c
  4. gcc -Wall -Wextra -Wformat=2 -Wswitch-default -Wcast-align -Wpointer-arith -Wbad-function-cast -Wstrict-prototypes -Winline -Wundef -Wnested-externs -Wcast-qual -Wshadow -Wwrite-strings -Wconversion -Wunreachable-code -Wstrict-aliasing=2 -ffloat-store -fno-common -fstrict-aliasing -std=c89 -pedantic -O0 -ggdb3 -pg -c -o game.o game.c
  5. gcc -Wall -Wextra -Wformat=2 -Wswitch-default -Wcast-align -Wpointer-arith -Wbad-function-cast -Wstrict-prototypes -Winline -Wundef -Wnested-externs -Wcast-qual -Wshadow -Wwrite-strings -Wconversion -Wunreachable-code -Wstrict-aliasing=2 -ffloat-store -fno-common -fstrict-aliasing -std=c89 -pedantic -O0 -ggdb3 -pg -c -o main.o main.c
  6. game.c: In function 'create_event':
  7. game.c:40:2: warning: conversion to 'long unsigned int' from 'int' may change the sign of the result [-Wsign-conversion]
  8. game.c: In function 'loop_bullets':
  9. game.c:441:36: warning: ISO C forbids conversion of function pointer to object pointer type [-pedantic]
  10. game.c:441:79: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  11. game.c:441:91: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  12. game.c:441:6: warning: ISO C forbids passing argument 4 of 'create_event' between function pointer and 'void *' [-pedantic]
  13. game.c:36:16: note: expected 'void (*)(void *)' but argument is of type 'void *'
  14. game.c: In function 'set_player_damage':
  15. game.c:783:32: warning: ISO C forbids conversion of function pointer to object pointer type [-pedantic]
  16. game.c:783:75: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  17. game.c:783:95: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
  18. game.c:783:2: warning: ISO C forbids passing argument 4 of 'create_event' between function pointer and 'void *' [-pedantic]
  19. game.c:36:16: note: expected 'void (*)(void *)' but argument is of type 'void *'
  20. main.c: In function 'main':
  21. main.c:70:32: warning: ISO C forbids conversion of function pointer to object pointer type [-pedantic]
  22. main.c:70:2: warning: ISO C forbids passing argument 4 of 'create_event' between function pointer and 'void *' [-pedantic]
  23. game.h:112:16: note: expected 'void (*)(void *)' but argument is of type 'void *'
  24. gcc -L/usr/lib -lncurses -o ascii-combat console.o game.o main.o
  25. make[1]: Leaving directory `/home/weegee/docs/projekte/c/ascii-combat/src'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement