Advertisement
beckadam

Untitled

May 21st, 2020
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.80 KB | None | 0 0
  1. make -C /home/adam/Desktop/calc-stuff/toolchain/src/libload FASMG='/home/adam/Desktop/calc-stuff/toolchain/tools/fasmg/fasmg' BIN='/home/adam/Desktop/calc-stuff/toolchain/tools'
  2. make[1]: Entering directory '/home/adam/Desktop/calc-stuff/toolchain/src/libload'
  3. make[1]: Nothing to be done for 'all'.
  4. make[1]: Leaving directory '/home/adam/Desktop/calc-stuff/toolchain/src/libload'
  5. make -C /home/adam/Desktop/calc-stuff/toolchain/src/graphx FASMG='/home/adam/Desktop/calc-stuff/toolchain/tools/fasmg/fasmg' BIN='/home/adam/Desktop/calc-stuff/toolchain/tools'
  6. make[1]: Entering directory '/home/adam/Desktop/calc-stuff/toolchain/src/graphx'
  7. make[1]: Nothing to be done for 'all'.
  8. make[1]: Leaving directory '/home/adam/Desktop/calc-stuff/toolchain/src/graphx'
  9. make -C /home/adam/Desktop/calc-stuff/toolchain/src/fontlibc FASMG='/home/adam/Desktop/calc-stuff/toolchain/tools/fasmg/fasmg' BIN='/home/adam/Desktop/calc-stuff/toolchain/tools'
  10. make[1]: Entering directory '/home/adam/Desktop/calc-stuff/toolchain/src/fontlibc'
  11. make[1]: Nothing to be done for 'all'.
  12. make[1]: Leaving directory '/home/adam/Desktop/calc-stuff/toolchain/src/fontlibc'
  13. make -C /home/adam/Desktop/calc-stuff/toolchain/src/keypadc FASMG='/home/adam/Desktop/calc-stuff/toolchain/tools/fasmg/fasmg' BIN='/home/adam/Desktop/calc-stuff/toolchain/tools'
  14. make[1]: Entering directory '/home/adam/Desktop/calc-stuff/toolchain/src/keypadc'
  15. make[1]: Nothing to be done for 'all'.
  16. make[1]: Leaving directory '/home/adam/Desktop/calc-stuff/toolchain/src/keypadc'
  17. make -C /home/adam/Desktop/calc-stuff/toolchain/src/fileioc FASMG='/home/adam/Desktop/calc-stuff/toolchain/tools/fasmg/fasmg' BIN='/home/adam/Desktop/calc-stuff/toolchain/tools'
  18. make[1]: Entering directory '/home/adam/Desktop/calc-stuff/toolchain/src/fileioc'
  19. make[1]: Nothing to be done for 'all'.
  20. make[1]: Leaving directory '/home/adam/Desktop/calc-stuff/toolchain/src/fileioc'
  21. make -C /home/adam/Desktop/calc-stuff/toolchain/src/ce BIN=/home/adam/Desktop/calc-stuff/toolchain/tools
  22. make[1]: Entering directory '/home/adam/Desktop/calc-stuff/toolchain/src/ce'
  23. make[1]: Nothing to be done for 'all'.
  24. make[1]: Leaving directory '/home/adam/Desktop/calc-stuff/toolchain/src/ce'
  25. make -C /home/adam/Desktop/calc-stuff/toolchain/src/std BIN=/home/adam/Desktop/calc-stuff/toolchain/tools
  26. make[1]: Entering directory '/home/adam/Desktop/calc-stuff/toolchain/src/std'
  27. make -C /home/adam/Desktop/calc-stuff/toolchain/src/std/fileio BIN=/home/adam/Desktop/calc-stuff/toolchain/tools
  28. make[2]: Entering directory '/home/adam/Desktop/calc-stuff/toolchain/src/std/fileio'
  29. ez80-clang -S -Wall -Wextra -Oz -ffreestanding -isystem .. -isystem ../../fileioc -isystem ../../ce -Dinterrupt="__attribute__((__interrupt__))" -D__rom=const -Dreentrant= -D_EZ80 fclose.c -o build/fclose.src
  30. In file included from fclose.c:2:
  31. In file included from ../../fileioc/fileioc.h:15:
  32. ../../ce/tice.h:317:5: error: type name requires a specifier or qualifier
  33. uint24_t (*getWidth)(char c);
  34. ^
  35. ../../ce/tice.h:321:5: error: type name requires a specifier or qualifier
  36. uint24_t (*getHeight)(void);
  37. ^
  38. ../../ce/tice.h:321:5: error: duplicate member 'uint24_t'
  39. ../../ce/tice.h:317:5: note: previous declaration is here
  40. uint24_t (*getWidth)(char c);
  41. ^
  42. ../../ce/tice.h:484:24: error: unknown type name 'uint24_t'; did you mean
  43. 'uint64_t'?
  44. void os_SetDrawFGColor(uint24_t color);
  45. ^
  46. ../stdint.h:105:38: note: 'uint64_t' declared here
  47. typedef __UINT64_TYPE__ uint64_t;
  48. ^
  49. In file included from fclose.c:2:
  50. In file included from ../../fileioc/fileioc.h:15:
  51. ../../ce/tice.h:490:1: error: unknown type name 'uint24_t'; did you mean
  52. 'uint64_t'?
  53. uint24_t os_GetDrawFGColor(void);
  54. ^
  55. ../stdint.h:105:38: note: 'uint64_t' declared here
  56. typedef __UINT64_TYPE__ uint64_t;
  57. ^
  58. In file included from fclose.c:2:
  59. In file included from ../../fileioc/fileioc.h:15:
  60. ../../ce/tice.h:496:24: error: unknown type name 'uint24_t'; did you mean
  61. 'uint64_t'?
  62. void os_SetDrawBGColor(uint24_t color);
  63. ^
  64. ../stdint.h:105:38: note: 'uint64_t' declared here
  65. typedef __UINT64_TYPE__ uint64_t;
  66. ^
  67. In file included from fclose.c:2:
  68. In file included from ../../fileioc/fileioc.h:15:
  69. ../../ce/tice.h:504:1: error: unknown type name 'uint24_t'; did you mean
  70. 'uint64_t'?
  71. uint24_t os_GetDrawBGColor(void);
  72. ^
  73. ../stdint.h:105:38: note: 'uint64_t' declared here
  74. typedef __UINT64_TYPE__ uint64_t;
  75. ^
  76. In file included from fclose.c:2:
  77. In file included from ../../fileioc/fileioc.h:15:
  78. ../../ce/tice.h:544:1: error: unknown type name 'uint24_t'; did you mean
  79. 'uint64_t'?
  80. uint24_t os_FontGetWidth(const char *string);
  81. ^
  82. ../stdint.h:105:38: note: 'uint64_t' declared here
  83. typedef __UINT64_TYPE__ uint64_t;
  84. ^
  85. In file included from fclose.c:2:
  86. In file included from ../../fileioc/fileioc.h:15:
  87. ../../ce/tice.h:549:1: error: unknown type name 'uint24_t'; did you mean
  88. 'uint64_t'?
  89. uint24_t os_FontGetHeight(void);
  90. ^
  91. ../stdint.h:105:38: note: 'uint64_t' declared here
  92. typedef __UINT64_TYPE__ uint64_t;
  93. ^
  94. In file included from fclose.c:2:
  95. In file included from ../../fileioc/fileioc.h:15:
  96. ../../ce/tice.h:559:1: error: unknown type name 'uint24_t'; did you mean
  97. 'uint64_t'?
  98. uint24_t os_FontDrawText(const char *string, uint16_t col, uint8_t row);
  99. ^
  100. ../stdint.h:105:38: note: 'uint64_t' declared here
  101. typedef __UINT64_TYPE__ uint64_t;
  102. ^
  103. In file included from fclose.c:2:
  104. In file included from ../../fileioc/fileioc.h:15:
  105. ../../ce/tice.h:569:1: error: unknown type name 'uint24_t'; did you mean
  106. 'uint64_t'?
  107. uint24_t os_FontDrawTransText(const char *string, uint16_t col, uint8_t row);
  108. ^
  109. ../stdint.h:105:38: note: 'uint64_t' declared here
  110. typedef __UINT64_TYPE__ uint64_t;
  111. ^
  112. In file included from fclose.c:2:
  113. In file included from ../../fileioc/fileioc.h:15:
  114. ../../ce/tice.h:577:1: error: unknown type name 'uint24_t'; did you mean
  115. 'uint64_t'?
  116. uint24_t os_PutStrFull(const char *string);
  117. ^
  118. ../stdint.h:105:38: note: 'uint64_t' declared here
  119. typedef __UINT64_TYPE__ uint64_t;
  120. ^
  121. In file included from fclose.c:2:
  122. In file included from ../../fileioc/fileioc.h:15:
  123. ../../ce/tice.h:585:1: error: unknown type name 'uint24_t'; did you mean
  124. 'uint64_t'?
  125. uint24_t os_PutStrLine(const char *string);
  126. ^
  127. ../stdint.h:105:38: note: 'uint64_t' declared here
  128. typedef __UINT64_TYPE__ uint64_t;
  129. ^
  130. In file included from fclose.c:2:
  131. In file included from ../../fileioc/fileioc.h:15:
  132. ../../ce/tice.h:680:36: error: unknown type name 'uint24_t'; did you mean
  133. 'uint64_t'?
  134. void *os_NextSymEntry(void *entry, uint24_t *type, uint24_t *nameLength...
  135. ^
  136. ../stdint.h:105:38: note: 'uint64_t' declared here
  137. typedef __UINT64_TYPE__ uint64_t;
  138. ^
  139. In file included from fclose.c:2:
  140. In file included from ../../fileioc/fileioc.h:15:
  141. ../../ce/tice.h:680:52: error: unknown type name 'uint24_t'; did you mean
  142. 'uint64_t'?
  143. void *os_NextSymEntry(void *entry, uint24_t *type, uint24_t *nameLength...
  144. ^
  145. ../stdint.h:105:38: note: 'uint64_t' declared here
  146. typedef __UINT64_TYPE__ uint64_t;
  147. ^
  148. In file included from fclose.c:2:
  149. In file included from ../../fileioc/fileioc.h:15:
  150. ../../ce/tice.h:891:1: error: unknown type name 'int24_t'; did you mean
  151. 'int64_t'?
  152. int24_t os_RealToInt24(const real_t *arg);
  153. ^
  154. ../stdint.h:100:39: note: 'int64_t' declared here
  155. typedef __INT64_TYPE__ int64_t;
  156. ^
  157. In file included from fclose.c:2:
  158. In file included from ../../fileioc/fileioc.h:15:
  159. ../../ce/tice.h:897:31: error: unknown type name 'int24_t'; did you mean
  160. 'int64_t'?
  161. tiflags real_t os_Int24ToReal(int24_t arg);
  162. ^
  163. ../stdint.h:100:39: note: 'int64_t' declared here
  164. typedef __INT64_TYPE__ int64_t;
  165. ^
  166. In file included from fclose.c:2:
  167. In file included from ../../fileioc/fileioc.h:15:
  168. ../../ce/tice.h:1049:66: error: unknown type name 'uint24_t'; did you mean
  169. 'uint64_t'?
  170. int8_t os_MSDRead(uint8_t lun, uint8_t blockCount, uint32_t lba, uint24_...
  171. ^
  172. ../stdint.h:105:38: note: 'uint64_t' declared here
  173. typedef __UINT64_TYPE__ uint64_t;
  174. ^
  175. In file included from fclose.c:2:
  176. In file included from ../../fileioc/fileioc.h:15:
  177. ../../ce/tice.h:1060:67: error: unknown type name 'uint24_t'; did you mean
  178. 'uint64_t'?
  179. int8_t os_MSDWrite(uint8_t lun, uint8_t blockCount, uint32_t lba, uint24_t bloc...
  180. ^
  181. ../stdint.h:105:38: note: 'uint64_t' declared here
  182. typedef __UINT64_TYPE__ uint64_t;
  183. ^
  184. fatal error: too many errors emitted, stopping now [-ferror-limit=]
  185. 20 errors generated.
  186. makefile:32: recipe for target 'build/fclose.src' failed
  187. make[2]: *** [build/fclose.src] Error 1
  188. make[2]: Leaving directory '/home/adam/Desktop/calc-stuff/toolchain/src/std/fileio'
  189. makefile:54: recipe for target 'all' failed
  190. make[1]: *** [all] Error 2
  191. make[1]: Leaving directory '/home/adam/Desktop/calc-stuff/toolchain/src/std'
  192. makefile:144: recipe for target 'std' failed
  193. make: *** [std] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement