Advertisement
BloodknightStudios

Untitled

Jul 12th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.63 KB | None | 0 0
  1.  
  2. -------------- Build: all in Astoniaclient35 (compiler: GNU GCC Compiler)---------------
  3.  
  4. Checking if target is up-to-date: mingw32-make.exe -q -f Makefile all
  5. Running command: C:/MinGW/bin/mingw32-make.exe -f "D:/Astonia/client35/build/Makefile" VERBOSE=1 all
  6. "C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -HD:\Astonia\client35 -BD:\Astonia\client35\build --check-build-system CMakeFiles\Makefile.cmake 0
  7. "C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_start D:\Astonia\client35\build\CMakeFiles D:\Astonia\client35\build\CMakeFiles\progress.marks
  8. C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\Makefile2 all
  9. mingw32-make.exe[1]: Entering directory 'D:/Astonia/client35/build'
  10. C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\Astonia_3.5.dir\build.make CMakeFiles/Astonia_3.5.dir/depend
  11. mingw32-make.exe[2]: Entering directory 'D:/Astonia/client35/build'
  12. "C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_depends "MinGW Makefiles" D:\Astonia\client35 D:\Astonia\client35 D:\Astonia\client35\build D:\Astonia\client35\build D:\Astonia\client35\build\CMakeFiles\Astonia_3.5.dir\DependInfo.cmake --color=
  13. Dependee "D:\Astonia\client35\build\CMakeFiles\Astonia_3.5.dir\DependInfo.cmake" is newer than depender "D:/Astonia/client35/build/CMakeFiles/Astonia_3.5.dir/depend.internal".
  14. Dependee "D:/Astonia/client35/build/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "D:/Astonia/client35/build/CMakeFiles/Astonia_3.5.dir/depend.internal".
  15. Scanning dependencies of target Astonia_3.5
  16. mingw32-make.exe[2]: Leaving directory 'D:/Astonia/client35/build'
  17. C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\Astonia_3.5.dir\build.make CMakeFiles/Astonia_3.5.dir/build
  18. mingw32-make.exe[2]: Entering directory 'D:/Astonia/client35/build'
  19. "C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report D:\Astonia\client35\build\CMakeFiles 1
  20. [ 7%]
  21. Building C object CMakeFiles/Astonia_3.5.dir/moac/client.c.obj
  22. C:\MinGW\bin\gcc.exe @CMakeFiles/Astonia_3.5.dir/includes_C.rsp -o CMakeFiles\Astonia_3.5.dir\moac\client.c.obj -c D:\Astonia\client35\moac\client.c
  23. "C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report D:\Astonia\client35\build\CMakeFiles 2
  24. [ 14%]
  25. Building C object CMakeFiles/Astonia_3.5.dir/moac/dd.c.obj
  26. C:\MinGW\bin\gcc.exe @CMakeFiles/Astonia_3.5.dir/includes_C.rsp -o CMakeFiles\Astonia_3.5.dir\moac\dd.c.obj -c D:\Astonia\client35\moac\dd.c
  27. In file included from D:\Astonia\client35\moac\dd.c:22:0:
  28. D:\Astonia\client35\moac\dd.h:24:15: warning: built-in function 'gamma' declared as non-function
  29. extern double gamma; // set me to adjust gamma, call dd_reset() afterwards
  30. ^
  31. In file included from D:\Astonia\client35\moac\dd.c:22:0:
  32. D:\Astonia\client35\moac\dd.h:227:32: warning: 'struct client_info' declared inside parameter list
  33. void dd_get_client_info(struct client_info *ci);
  34. ^
  35. D:\Astonia\client35\moac\dd.h:227:32: warning: its scope is only this definition or declaration, which is probably not what you want
  36. D:\Astonia\client35\moac\dd.c:40:40: warning: 'struct vid_cache' declared inside parameter list
  37. static void vid_add_cache_small(struct vid_cache *vn);
  38. ^
  39. D:\Astonia\client35\moac\dd.c:41:35: warning: 'struct vid_cache' declared inside parameter list
  40. static void vid_free_cache(struct vid_cache *vc);
  41. ^
  42. D:\Astonia\client35\moac\dd.c:328:6: error: conflicting types for 'dd_get_client_info'
  43. void dd_get_client_info(struct client_info *ci)
  44. ^
  45. In file included from D:\Astonia\client35\moac\dd.c:22:0:
  46. D:\Astonia\client35\moac\dd.h:227:6: note: previous declaration of 'dd_get_client_info' was here
  47. void dd_get_client_info(struct client_info *ci);
  48. ^
  49. D:\Astonia\client35\moac\dd.c: In function 'dd_reset_cache':
  50. D:\Astonia\client35\moac\dd.c:1171:20: warning: passing argument 1 of 'vid_free_cache' from incompatible pointer type
  51. vid_free_cache(systemcache[sidx].vc[v]);
  52. ^
  53. D:\Astonia\client35\moac\dd.c:41:13: note: expected 'struct vid_cache *' but argument is of type 'struct vid_cache *'
  54. static void vid_free_cache(struct vid_cache *vc);
  55. ^
  56. D:\Astonia\client35\moac\dd.c: In function 'sc_make_slow':
  57. D:\Astonia\client35\moac\dd.c:1787:20: error: array subscript is not an integer
  58. irgb=image->rgb[floor(ix)+floor(iy)*image->xres];
  59. ^
  60. D:\Astonia\client35\moac\dd.c:1800:23: error: array subscript is not an integer
  61. else dba=image->a[floor(ix)+floor(iy)*image->xres]*low_x*low_y;
  62. ^
  63. D:\Astonia\client35\moac\dd.c:1803:48: error: array subscript is not an integer
  64. irgb=image->rgb[ceil(ix)+floor(iy)*image->xres];
  65. ^
  66. D:\Astonia\client35\moac\dd.c:1816:24: error: array subscript is not an integer
  67. else dba+=image->a[ceil(ix)+floor(iy)*image->xres]*high_x*low_y;
  68. ^
  69. D:\Astonia\client35\moac\dd.c:1819:48: error: array subscript is not an integer
  70. irgb=image->rgb[floor(ix)+ceil(iy)*image->xres];
  71. ^
  72. D:\Astonia\client35\moac\dd.c:1832:24: error: array subscript is not an integer
  73. else dba+=image->a[floor(ix)+ceil(iy)*image->xres]*low_x*high_y;
  74. ^
  75. D:\Astonia\client35\moac\dd.c:1835:48: error: array subscript is not an integer
  76. irgb=image->rgb[ceil(ix)+ceil(iy)*image->xres];
  77. ^
  78. D:\Astonia\client35\moac\dd.c:1849:24: error: array subscript is not an integer
  79. else dba+=image->a[ceil(ix)+ceil(iy)*image->xres]*high_x*high_y;
  80. ^
  81. D:\Astonia\client35\moac\dd.c: In function 'sc_load':
  82. D:\Astonia\client35\moac\dd.c:2168:19: warning: passing argument 1 of 'vid_free_cache' from incompatible pointer type
  83. vid_free_cache(systemcache[sidx].vc[v]);
  84. ^
  85. D:\Astonia\client35\moac\dd.c:41:13: note: expected 'struct vid_cache *' but argument is of type 'struct vid_cache *'
  86. static void vid_free_cache(struct vid_cache *vc);
  87. ^
  88. D:\Astonia\client35\moac\dd.c: At top level:
  89. D:\Astonia\client35\moac\dd.c:3798:13: error: conflicting types for 'vid_add_cache_small'
  90. static void vid_add_cache_small(struct vid_cache *vn)
  91. ^
  92. D:\Astonia\client35\moac\dd.c:40:13: note: previous declaration of 'vid_add_cache_small' was here
  93. static void vid_add_cache_small(struct vid_cache *vn);
  94. ^
  95. D:\Astonia\client35\moac\dd.c:3812:13: error: conflicting types for 'vid_free_cache'
  96. static void vid_free_cache(struct vid_cache *vc)
  97. ^
  98. D:\Astonia\client35\moac\dd.c:41:13: note: previous declaration of 'vid_free_cache' was here
  99. static void vid_free_cache(struct vid_cache *vc);
  100. ^
  101. In file included from c:\mingw\include\objbase.h:4:0,
  102. from c:\mingw\include\ole2.h:9,
  103. from c:\mingw\include\windows.h:114,
  104. from D:\Astonia\client35\moac\dd.c:7:
  105. D:\Astonia\client35\moac\dd.c:4333:27: error: expected identifier or '(' before 'char'
  106. static int children,large,small;
  107. ^
  108. D:\Astonia\client35\moac\dd.c: In function 'vid_show':
  109. D:\Astonia\client35\moac\dd.c:4362:17: error: expected expression before 'char'
  110. children=large=small=0;
  111. ^
  112. D:\Astonia\client35\moac\dd.c:4409:8: error: expected identifier or '(' before '++' token
  113. small++;
  114. ^
  115. In file included from c:\mingw\include\objbase.h:4:0,
  116. from c:\mingw\include\ole2.h:9,
  117. from c:\mingw\include\windows.h:114,
  118. from D:\Astonia\client35\moac\dd.c:7:
  119. D:\Astonia\client35\moac\dd.c:4418:53: error: expected expression before 'char'
  120. note("used=%d, large=%d, free=%d\n",children,large,small);
  121. ^
  122. D:\Astonia\client35\moac\dd.c: At top level:
  123. D:\Astonia\client35\moac\dd.c:41:13: warning: 'vid_free_cache' used but never defined
  124. static void vid_free_cache(struct vid_cache *vc);
  125. ^
  126. mingw32-make.exe[2]: *** [CMakeFiles/Astonia_3.5.dir/moac/dd.c.obj] Error 1
  127. mingw32-make.exe[1]: *** [CMakeFiles/Astonia_3.5.dir/all] Error 2
  128. mingw32-make.exe: *** [all] Error 2
  129. CMakeFiles\Astonia_3.5.dir\build.make:81: recipe for target 'CMakeFiles/Astonia_3.5.dir/moac/dd.c.obj' failed
  130. mingw32-make.exe[2]: Leaving directory 'D:/Astonia/client35/build'
  131. CMakeFiles\Makefile2:62: recipe for target 'CMakeFiles/Astonia_3.5.dir/all' failed
  132. mingw32-make.exe[1]: Leaving directory 'D:/Astonia/client35/build'
  133. D:/Astonia/client35/build/Makefile:74: recipe for target 'all' failed
  134. Process terminated with status 2 (0 minute(s), 2 second(s))
  135. 18 error(s), 8 warning(s) (0 minute(s), 2 second(s))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement