Advertisement
D3ad

Err

Nov 23rd, 2014
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.06 KB | None | 0 0
  1. gcc -std=c99 -pedantic -Wall -c -g error.h
  2. gcc -std=c99 -pedantic -Wall -c -g ial.h
  3. gcc -std=c99 -pedantic -Wall -c -g inst_list.h
  4. gcc -std=c99 -pedantic -Wall -c -g semantic_analyze.c semantic_analyze.h
  5. semantic_analyze.c: In function ‘checkTwoDataType’:
  6. semantic_analyze.c:111:2: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
  7.   else if(instrucType = i_idiv ){
  8.   ^
  9. gcc -std=c99 -pedantic -Wall -c -g seznam.c seznam.h
  10. seznam.c: In function ‘freeList’:
  11. seznam.c:76:8: warning: assignment from incompatible pointer type [enabled by default]
  12.     pom = list->first->next;
  13.         ^
  14. seznam.c:79:16: warning: assignment from incompatible pointer type [enabled by default]
  15.     list->first = pom;
  16.                 ^
  17. gcc -o binary error.o generator.o hash.o ial.o inst_list.o instruction.o interpret.o main.o parser.o scanner.o semantic_analyze.o seznam.o
  18. gcc: error: error.o: No such file or directory
  19. gcc: error: ial.o: No such file or directory
  20. gcc: error: inst_list.o: No such file or directory
  21. make: *** [binary] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement