Advertisement
Guest User

Untitled

a guest
Apr 6th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.83 KB | None | 0 0
  1. In file included from silencer/game.cpp:1:
  2. In file included from silencer/game.h:4:
  3. In file included from silencer/shared.h:11:
  4. In file included from silencer/SDL.h:67:
  5. In file included from silencer/SDL_main.h:25:
  6. silencer/SDL_stdinc.h:135:9: error: unknown type name 'int8_t'
  7. typedef int8_t Sint8;
  8. ^
  9. silencer/SDL_stdinc.h:139:9: error: unknown type name 'uint8_t'
  10. typedef uint8_t Uint8;
  11. ^
  12. silencer/SDL_stdinc.h:143:9: error: unknown type name 'int16_t'
  13. typedef int16_t Sint16;
  14. ^
  15. silencer/SDL_stdinc.h:147:9: error: unknown type name 'uint16_t'
  16. typedef uint16_t Uint16;
  17. ^
  18. silencer/SDL_stdinc.h:151:9: error: unknown type name 'int32_t'
  19. typedef int32_t Sint32;
  20. ^
  21. silencer/SDL_stdinc.h:155:9: error: unknown type name 'uint32_t'
  22. typedef uint32_t Uint32;
  23. ^
  24. silencer/SDL_stdinc.h:160:9: error: unknown type name 'int64_t'
  25. typedef int64_t Sint64;
  26. ^
  27. silencer/SDL_stdinc.h:164:9: error: unknown type name 'uint64_t'
  28. typedef uint64_t Uint64;
  29. ^
  30. silencer/SDL_stdinc.h:173:1: error: 'SDL_dummy_uint8' declared as an array with a negative size
  31. SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1);
  32. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  33. silencer/SDL_stdinc.h:170:39: note: expanded from macro 'SDL_COMPILE_TIME_ASSERT'
  34. typedef int SDL_dummy_ ## name[(x) * 2 - 1]
  35. ^~~~~~~~~~~
  36. silencer/SDL_stdinc.h:174:1: error: 'SDL_dummy_sint8' declared as an array with a negative size
  37. SDL_COMPILE_TIME_ASSERT(sint8, sizeof(Sint8) == 1);
  38. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  39. silencer/SDL_stdinc.h:170:39: note: expanded from macro 'SDL_COMPILE_TIME_ASSERT'
  40. typedef int SDL_dummy_ ## name[(x) * 2 - 1]
  41. ^~~~~~~~~~~
  42. silencer/SDL_stdinc.h:175:1: error: 'SDL_dummy_uint16' declared as an array with a negative size
  43. SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2);
  44. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  45. silencer/SDL_stdinc.h:170:39: note: expanded from macro 'SDL_COMPILE_TIME_ASSERT'
  46. typedef int SDL_dummy_ ## name[(x) * 2 - 1]
  47. ^~~~~~~~~~~
  48. silencer/SDL_stdinc.h:176:1: error: 'SDL_dummy_sint16' declared as an array with a negative size
  49. SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2);
  50. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  51. silencer/SDL_stdinc.h:170:39: note: expanded from macro 'SDL_COMPILE_TIME_ASSERT'
  52. typedef int SDL_dummy_ ## name[(x) * 2 - 1]
  53. ^~~~~~~~~~~
  54. silencer/SDL_stdinc.h:179:1: error: 'SDL_dummy_uint64' declared as an array with a negative size
  55. SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8);
  56. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  57. silencer/SDL_stdinc.h:170:39: note: expanded from macro 'SDL_COMPILE_TIME_ASSERT'
  58. typedef int SDL_dummy_ ## name[(x) * 2 - 1]
  59. ^~~~~~~~~~~
  60. silencer/SDL_stdinc.h:180:1: error: 'SDL_dummy_sint64' declared as an array with a negative size
  61. SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8);
  62. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  63. silencer/SDL_stdinc.h:170:39: note: expanded from macro 'SDL_COMPILE_TIME_ASSERT'
  64. typedef int SDL_dummy_ ## name[(x) * 2 - 1]
  65. ^~~~~~~~~~~
  66. In file included from silencer/game.cpp:1:
  67. In file included from silencer/game.h:4:
  68. In file included from silencer/shared.h:11:
  69. In file included from silencer/SDL.h:71:
  70. In file included from silencer/SDL_audio.h:33:
  71. silencer/SDL_endian.h:181:7: warning: shift count >= width of type [-Wshift-count-overflow]
  72. x >>= 32;
  73. ^ ~~
  74. silencer/SDL_endian.h:184:7: warning: shift count >= width of type [-Wshift-count-overflow]
  75. x <<= 32;
  76. ^ ~~
  77. In file included from silencer/game.cpp:1:
  78. In file included from silencer/game.h:6:
  79. In file included from silencer/world.h:16:
  80. silencer/lobby.h:59:2: error: unknown type name 'SOCKET'
  81. SOCKET sockethandle;
  82. ^
  83. silencer/lobby.h:66:2: error: unknown type name 'hostent'
  84. hostent * he;
  85. ^
  86. In file included from silencer/game.cpp:1:
  87. In file included from silencer/game.h:6:
  88. In file included from silencer/world.h:18:
  89. silencer/lagsimulator.h:11:15: error: unknown type name 'SOCKET'
  90. LagSimulator(SOCKET * sockethandle);
  91. ^
  92. silencer/lagsimulator.h:18:2: error: unknown type name 'SOCKET'
  93. SOCKET * sockethandle;
  94. ^
  95. In file included from silencer/game.cpp:1:
  96. In file included from silencer/game.h:6:
  97. silencer/world.h:132:18: error: unknown type name 'sockaddr_in'
  98. Peer * FindPeer(sockaddr_in & sockaddr);
  99. ^
  100. fatal error: too many errors emitted, stopping now [-ferror-limit=]
  101. 2 warnings and 20 errors generated.
  102. ERROR root: compiler frontend failed to generate LLVM bitcode, halting
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement