Guest User

errors

a guest
Jul 13th, 2020
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.48 KB | None | 0 0
  1. Makefile:934: warning: overriding recipe for target 'libgraph.pc'
  2. Makefile:409: warning: ignoring old recipe for target 'libgraph.pc'
  3. make all-recursive
  4. make[1]: Entering directory '/home/kandy/Downloads/libgraph-1.0.2'
  5. Makefile:934: warning: overriding recipe for target 'libgraph.pc'
  6. Makefile:409: warning: ignoring old recipe for target 'libgraph.pc'
  7. Making all in doc
  8. make[2]: Entering directory '/home/kandy/Downloads/libgraph-1.0.2/doc'
  9. Making all in man
  10. make[3]: Entering directory '/home/kandy/Downloads/libgraph-1.0.2/doc/man'
  11. make[3]: Nothing to be done for 'all'.
  12. make[3]: Leaving directory '/home/kandy/Downloads/libgraph-1.0.2/doc/man'
  13. make[3]: Entering directory '/home/kandy/Downloads/libgraph-1.0.2/doc'
  14. make[3]: Nothing to be done for 'all-am'.
  15. make[3]: Leaving directory '/home/kandy/Downloads/libgraph-1.0.2/doc'
  16. make[2]: Leaving directory '/home/kandy/Downloads/libgraph-1.0.2/doc'
  17. make[2]: Entering directory '/home/kandy/Downloads/libgraph-1.0.2'
  18. Makefile:934: warning: overriding recipe for target 'libgraph.pc'
  19. Makefile:409: warning: ignoring old recipe for target 'libgraph.pc'
  20. if /bin/bash ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\""/usr/local/share/libgraph/Font/"\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT libgraph.lo -MD -MP -MF ".deps/libgraph.Tpo" -c -o libgraph.lo libgraph.c; \
  21. then mv -f ".deps/libgraph.Tpo" ".deps/libgraph.Plo"; else rm -f ".deps/libgraph.Tpo"; exit 1; fi
  22. mkdir .libs
  23. gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\"/usr/local/share/libgraph/Font/\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT libgraph.lo -MD -MP -MF .deps/libgraph.Tpo -c libgraph.c -fPIC -DPIC -o .libs/libgraph.o
  24. gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\"/usr/local/share/libgraph/Font/\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT libgraph.lo -MD -MP -MF .deps/libgraph.Tpo -c libgraph.c -o libgraph.o >/dev/null 2>&1
  25. if /bin/bash ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\""/usr/local/share/libgraph/Font/"\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT text.lo -MD -MP -MF ".deps/text.Tpo" -c -o text.lo text.c; \
  26. then mv -f ".deps/text.Tpo" ".deps/text.Plo"; else rm -f ".deps/text.Tpo"; exit 1; fi
  27. gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\"/usr/local/share/libgraph/Font/\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT text.lo -MD -MP -MF .deps/text.Tpo -c text.c -fPIC -DPIC -o .libs/text.o
  28. text.c: In function 'grgetch':
  29. text.c:289:8: warning: implicit declaration of function 'refresh_interrupt' [-Wimplicit-function-declaration]
  30. 289 | refresh_interrupt(0);
  31. | ^~~~~~~~~~~~~~~~~
  32. text.c: In function 'kbhit':
  33. text.c:336:4: warning: implicit declaration of function 'delay' [-Wimplicit-function-declaration]
  34. 336 | delay(100);
  35. | ^~~~~
  36. text.c: In function 'grscanf':
  37. text.c:401:21: warning: passing argument 1 of 'vsscanf' from incompatible pointer type [-Wincompatible-pointer-types]
  38. 401 | num = vsscanf(&template,text,ap); // Guessing no of arguments
  39. | ^~~~~~~~~
  40. | |
  41. | char (*)[21]
  42. In file included from /usr/include/SDL/SDL_stdinc.h:37,
  43. from /usr/include/SDL/SDL_main.h:26,
  44. from /usr/include/SDL/SDL.h:30,
  45. from grtext.h:25,
  46. from text.c:24:
  47. /usr/include/stdio.h:444:44: note: expected 'const char * restrict' but argument is of type 'char (*)[21]'
  48. 444 | extern int vsscanf (const char *__restrict __s,
  49. | ~~~~~~~~~~~~~~~~~~~~~~~^~~
  50. text.c:447:17: warning: passing argument 1 of 'vsscanf' from incompatible pointer type [-Wincompatible-pointer-types]
  51. 447 | if (vsscanf(&input,text,ap) < num) break;
  52. | ^~~~~~
  53. | |
  54. | char (*)[256]
  55. In file included from /usr/include/SDL/SDL_stdinc.h:37,
  56. from /usr/include/SDL/SDL_main.h:26,
  57. from /usr/include/SDL/SDL.h:30,
  58. from grtext.h:25,
  59. from text.c:24:
  60. /usr/include/stdio.h:444:44: note: expected 'const char * restrict' but argument is of type 'char (*)[256]'
  61. 444 | extern int vsscanf (const char *__restrict __s,
  62. | ~~~~~~~~~~~~~~~~~~~~~~~^~~
  63. gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\"/usr/local/share/libgraph/Font/\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT text.lo -MD -MP -MF .deps/text.Tpo -c text.c -o text.o >/dev/null 2>&1
  64. if /bin/bash ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\""/usr/local/share/libgraph/Font/"\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT shapes.lo -MD -MP -MF ".deps/shapes.Tpo" -c -o shapes.lo shapes.c; \
  65. then mv -f ".deps/shapes.Tpo" ".deps/shapes.Plo"; else rm -f ".deps/shapes.Tpo"; exit 1; fi
  66. gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\"/usr/local/share/libgraph/Font/\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT shapes.lo -MD -MP -MF .deps/shapes.Tpo -c shapes.c -fPIC -DPIC -o .libs/shapes.o
  67. shapes.c: In function 'cleardevice':
  68. shapes.c:34:5: warning: implicit declaration of function 'setbkcolor' [-Wimplicit-function-declaration]
  69. 34 | setbkcolor(getbkcolor());
  70. | ^~~~~~~~~~
  71. shapes.c:34:16: warning: implicit declaration of function 'getbkcolor' [-Wimplicit-function-declaration]
  72. 34 | setbkcolor(getbkcolor());
  73. | ^~~~~~~~~~
  74. shapes.c: In function 'moveto':
  75. shapes.c:55:13: warning: implicit declaration of function 'getmaxx'; did you mean 'getx'? [-Wimplicit-function-declaration]
  76. 55 | CP.x = (x>getmaxx())? getmaxx() : x;
  77. | ^~~~~~~
  78. | getx
  79. shapes.c:56:13: warning: implicit declaration of function 'getmaxy'; did you mean 'gety'? [-Wimplicit-function-declaration]
  80. 56 | CP.y = (y>getmaxy())? getmaxy() : y;
  81. | ^~~~~~~
  82. | gety
  83. shapes.c: In function 'fastline':
  84. shapes.c:76:12: warning: implicit declaration of function 'mapword' [-Wimplicit-function-declaration]
  85. 76 | x1<x2? mapword(x1, y1, dx) : mapword(x2, y2, dx);
  86. | ^~~~~~~
  87. shapes.c:79:14: warning: implicit declaration of function 'mapvword' [-Wimplicit-function-declaration]
  88. 79 | y1<y2? mapvword(x1, y1, dy) : mapvword(x2, y2, dy);
  89. | ^~~~~~~~
  90. shapes.c:89:4: warning: implicit declaration of function 'mappixel' [-Wimplicit-function-declaration]
  91. 89 | mappixel(x1, y1);
  92. | ^~~~~~~~
  93. shapes.c: In function 'line':
  94. shapes.c:416:3: warning: implicit declaration of function 'safe_update' [-Wimplicit-function-declaration]
  95. 416 | safe_update(x1-_internal_linestyle.thickness, y1-_internal_linestyle.thickness,
  96. | ^~~~~~~~~~~
  97. shapes.c: In function 'pieslice':
  98. shapes.c:544:33: warning: implicit declaration of function 'getcolor' [-Wimplicit-function-declaration]
  99. 544 | _boundaryfill((int)x, (int)y, getcolor());
  100. | ^~~~~~~~
  101. shapes.c: In function '_boundaryfill':
  102. shapes.c:635:10: warning: implicit declaration of function 'getpixel' [-Wimplicit-function-declaration]
  103. 635 | curr = getpixel(x, y);
  104. | ^~~~~~~~
  105. gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\"/usr/local/share/libgraph/Font/\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT shapes.lo -MD -MP -MF .deps/shapes.Tpo -c shapes.c -o shapes.o >/dev/null 2>&1
  106. if /bin/bash ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\""/usr/local/share/libgraph/Font/"\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT polygon.lo -MD -MP -MF ".deps/polygon.Tpo" -c -o polygon.lo polygon.c; \
  107. then mv -f ".deps/polygon.Tpo" ".deps/polygon.Plo"; else rm -f ".deps/polygon.Tpo"; exit 1; fi
  108. gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\"/usr/local/share/libgraph/Font/\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT polygon.lo -MD -MP -MF .deps/polygon.Tpo -c polygon.c -fPIC -DPIC -o .libs/polygon.o
  109. polygon.c: In function 'drawpoly':
  110. polygon.c:40:9: warning: implicit declaration of function 'line' [-Wimplicit-function-declaration]
  111. 40 | line(x1, y1, x2, y2);
  112. | ^~~~
  113. polygon.c: In function '_fillpoly':
  114. polygon.c:94:3: warning: implicit declaration of function 'mappixel' [-Wimplicit-function-declaration]
  115. 94 | mappixel(curr->x,i);
  116. | ^~~~~~~~
  117. polygon.c:101:3: warning: implicit declaration of function 'mapword' [-Wimplicit-function-declaration]
  118. 101 | mapword(curr->x,i,p2->x-curr->x);
  119. | ^~~~~~~
  120. gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\"/usr/local/share/libgraph/Font/\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT polygon.lo -MD -MP -MF .deps/polygon.Tpo -c polygon.c -o polygon.o >/dev/null 2>&1
  121. /bin/bash ./libtool --mode=link gcc -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\""/usr/local/share/libgraph/Font/"\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -o libgraph.la -rpath /usr/local/lib -version-info 1:2:0 -export-dynamic libgraph.lo text.lo shapes.lo polygon.lo -lm -lSDL_image -L/usr/lib/x86_64-linux-gnu -lSDL
  122. gcc -shared .libs/libgraph.o .libs/text.o .libs/shapes.o .libs/polygon.o -lm -lSDL_image -L/usr/lib/x86_64-linux-gnu -lSDL -Wl,-soname -Wl,libgraph.so.1 -o .libs/libgraph.so.1.0.2
  123. (cd .libs && rm -f libgraph.so.1 && ln -s libgraph.so.1.0.2 libgraph.so.1)
  124. (cd .libs && rm -f libgraph.so && ln -s libgraph.so.1.0.2 libgraph.so)
  125. ar cru .libs/libgraph.a libgraph.o text.o shapes.o polygon.o
  126. ar: `u' modifier ignored since `D' is the default (see `U')
  127. ranlib .libs/libgraph.a
  128. creating libgraph.la
  129. (cd .libs && rm -f libgraph.la && ln -s ../libgraph.la libgraph.la)
  130. if /bin/bash ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\""/usr/local/share/libgraph/Font/"\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT guile-libgraph.lo -MD -MP -MF ".deps/guile-libgraph.Tpo" -c -o guile-libgraph.lo guile-libgraph.c; \
  131. then mv -f ".deps/guile-libgraph.Tpo" ".deps/guile-libgraph.Plo"; else rm -f ".deps/guile-libgraph.Tpo"; exit 1; fi
  132. gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFONTDIR=\"/usr/local/share/libgraph/Font/\" -g -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT guile-libgraph.lo -MD -MP -MF .deps/guile-libgraph.Tpo -c guile-libgraph.c -fPIC -DPIC -o .libs/guile-libgraph.o
  133. guile-libgraph.c:25:10: fatal error: libguile.h: No such file or directory
  134. 25 | #include <libguile.h>
  135. | ^~~~~~~~~~~~
  136. compilation terminated.
  137. make[2]: *** [Makefile:460: guile-libgraph.lo] Error 1
  138. make[2]: Leaving directory '/home/kandy/Downloads/libgraph-1.0.2'
  139. make[1]: *** [Makefile:552: all-recursive] Error 1
  140. make[1]: Leaving directory '/home/kandy/Downloads/libgraph-1.0.2'
  141. make: *** [Makefile:268: all] Error 2
Add Comment
Please, Sign In to add comment