Advertisement
Guest User

Untitled

a guest
Nov 24th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.45 KB | None | 0 0
  1. :/tmp/mnt/ssd/movie/reqrypt# make client
  2. (cd src; \
  3. make clean; \
  4. make -j 4 client)
  5. make[1]: Entering directory '/tmp/mnt/ssd/movie/reqrypt/src'
  6. rm -f base64.o client.o checksum.o cktp_client.o cktp_common.o cktp_encoding.o cktp_url.o config.o encodings/aes.o encodings/aes_hardware.o encodings/crypt.o encodings/pad.o encodings/natural.o http_server.o install.o log.o options.o packet.o packet_dispatch.o packet_filter.o packet_protocol.o packet_track.o random.o tunnel.o freebsd/capture.o freebsd/misc.o base64.o checksum.o config.o cktp_common.o cktp_encoding.o cktp_server.o cktp_url.o encodings/aes.o encodings/aes_hardware.o encodings/crypt.o encodings/pad.o linux/misc.o quota.o random.o server.o server_table.o http_data.c install_data.c tools/file2c
  7. make[1]: Leaving directory '/tmp/mnt/ssd/movie/reqrypt/src'
  8. make[1]: Entering directory '/tmp/mnt/ssd/movie/reqrypt/src'
  9. gcc -DCLIENT -DFREEBSD -Wall -O2 -I "/mnt/ssd/movie/reqrypt/src/" -c -o base64.o base64.c
  10. gcc -DCLIENT -DFREEBSD -Wall -O2 -I "/mnt/ssd/movie/reqrypt/src/" -c -o client.o client.c
  11. gcc -DCLIENT -DFREEBSD -Wall -O2 -I "/mnt/ssd/movie/reqrypt/src/" -c -o checksum.o checksum.c
  12. gcc -DCLIENT -DFREEBSD -Wall -O2 -I "/mnt/ssd/movie/reqrypt/src/" -c -o cktp_client.o cktp_client.c
  13. gcc -DCLIENT -DFREEBSD -Wall -O2 -I "/mnt/ssd/movie/reqrypt/src/" -c -o cktp_common.o cktp_common.c
  14. gcc -DCLIENT -DFREEBSD -Wall -O2 -I "/mnt/ssd/movie/reqrypt/src/" -c -o cktp_encoding.o cktp_encoding.c
  15. gcc -DCLIENT -DFREEBSD -Wall -O2 -I "/mnt/ssd/movie/reqrypt/src/" -c -o cktp_url.o cktp_url.c
  16. gcc -DCLIENT -DFREEBSD -Wall -O2 -I "/mnt/ssd/movie/reqrypt/src/" -c -o config.o config.c
  17. config.c: In function 'read_token':
  18. config.c:828:13: warning: case label value is less than minimum value for type
  19. case EOF:
  20. ^~~~
  21. config.c:877:13: warning: case label value is less than minimum value for type
  22. case EOF:
  23. ^~~~
  24. gcc -DCLIENT -DFREEBSD -Wall -O2 -I "/mnt/ssd/movie/reqrypt/src/" -c -o encodings/aes.o encodings/aes.c
  25. gcc -DCLIENT -DFREEBSD -Wall -O2 -I "/mnt/ssd/movie/reqrypt/src/" -flax-vector-conversions -c -o encodings/aes_hardware.o encodings/aes_hardware.c
  26. encodings/aes_hardware.c: In function 'aes_expandkey_assist':
  27. encodings/aes_hardware.c:38:37: warning: implicit declaration of function '__builtin_ia32_pshufd' [-Wimplicit-function-declaration]
  28. #define bshuffle __builtin_ia32_pshufd
  29. ^
  30. encodings/aes_hardware.c:66:9: note: in expansion of macro 'bshuffle'
  31. b = bshuffle(b, 0xFF);
  32. ^~~~~~~~
  33. encodings/aes_hardware.c:66:7: error: incompatible types when assigning to type 'int128_t {aka __vector(2) long long int}' from type 'int'
  34. b = bshuffle(b, 0xFF);
  35. ^
  36. encodings/aes_hardware.c:40:5: warning: implicit declaration of function '__builtin_ia32_pslldqi128' [-Wimplicit-function-declaration]
  37. __builtin_ia32_pslldqi128((a), (b) * 8)
  38. ^
  39. encodings/aes_hardware.c:67:18: note: in expansion of macro 'lshift4'
  40. int128_t c = lshift4(a, 4);
  41. ^~~~~~~
  42. encodings/aes_hardware.c:40:5: error: incompatible types when initializing type 'int128_t {aka __vector(2) long long int}' using type 'int'
  43. __builtin_ia32_pslldqi128((a), (b) * 8)
  44. ^
  45. encodings/aes_hardware.c:67:18: note: in expansion of macro 'lshift4'
  46. int128_t c = lshift4(a, 4);
  47. ^~~~~~~
  48. encodings/aes_hardware.c:69:7: error: incompatible types when assigning to type 'int128_t {aka __vector(2) long long int}' from type 'int'
  49. c = lshift4(a, 4);
  50. ^
  51. encodings/aes_hardware.c:71:7: error: incompatible types when assigning to type 'int128_t {aka __vector(2) long long int}' from type 'int'
  52. c = lshift4(a, 4);
  53. ^
  54. encodings/aes_hardware.c: In function 'aes_hardware_expandkey':
  55. encodings/aes_hardware.c:36:37: warning: implicit declaration of function '__builtin_ia32_aeskeygenassist128' [-Wimplicit-function-declaration]
  56. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  57. ^
  58. encodings/aes_hardware.c:36:37: note: in definition of macro 'aes_keygen_assist'
  59. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  60. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  61. encodings/aes_hardware.c:36:37: error: incompatible type for argument 2 of 'aes_expandkey_assist'
  62. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  63. ^
  64. encodings/aes_hardware.c:36:37: note: in definition of macro 'aes_keygen_assist'
  65. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  66. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  67. encodings/aes_hardware.c:64:17: note: expected 'int128_t {aka __vector(2) long long int}' but argument is of type 'int'
  68. static int128_t aes_expandkey_assist(int128_t a, int128_t b)
  69. ^~~~~~~~~~~~~~~~~~~~
  70. encodings/aes_hardware.c:36:37: error: incompatible type for argument 2 of 'aes_expandkey_assist'
  71. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  72. ^
  73. encodings/aes_hardware.c:36:37: note: in definition of macro 'aes_keygen_assist'
  74. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  75. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  76. encodings/aes_hardware.c:64:17: note: expected 'int128_t {aka __vector(2) long long int}' but argument is of type 'int'
  77. static int128_t aes_expandkey_assist(int128_t a, int128_t b)
  78. ^~~~~~~~~~~~~~~~~~~~
  79. encodings/aes_hardware.c:36:37: error: incompatible type for argument 2 of 'aes_expandkey_assist'
  80. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  81. ^
  82. encodings/aes_hardware.c:36:37: note: in definition of macro 'aes_keygen_assist'
  83. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  84. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  85. encodings/aes_hardware.c:64:17: note: expected 'int128_t {aka __vector(2) long long int}' but argument is of type 'int'
  86. static int128_t aes_expandkey_assist(int128_t a, int128_t b)
  87. ^~~~~~~~~~~~~~~~~~~~
  88. encodings/aes_hardware.c:36:37: error: incompatible type for argument 2 of 'aes_expandkey_assist'
  89. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  90. ^
  91. encodings/aes_hardware.c:36:37: note: in definition of macro 'aes_keygen_assist'
  92. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  93. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  94. encodings/aes_hardware.c:64:17: note: expected 'int128_t {aka __vector(2) long long int}' but argument is of type 'int'
  95. static int128_t aes_expandkey_assist(int128_t a, int128_t b)
  96. ^~~~~~~~~~~~~~~~~~~~
  97. encodings/aes_hardware.c:36:37: error: incompatible type for argument 2 of 'aes_expandkey_assist'
  98. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  99. ^
  100. encodings/aes_hardware.c:36:37: note: in definition of macro 'aes_keygen_assist'
  101. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  102. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  103. encodings/aes_hardware.c:64:17: note: expected 'int128_t {aka __vector(2) long long int}' but argument is of type 'int'
  104. static int128_t aes_expandkey_assist(int128_t a, int128_t b)
  105. ^~~~~~~~~~~~~~~~~~~~
  106. encodings/aes_hardware.c:36:37: error: incompatible type for argument 2 of 'aes_expandkey_assist'
  107. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  108. ^
  109. encodings/aes_hardware.c:36:37: note: in definition of macro 'aes_keygen_assist'
  110. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  111. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  112. encodings/aes_hardware.c:64:17: note: expected 'int128_t {aka __vector(2) long long int}' but argument is of type 'int'
  113. static int128_t aes_expandkey_assist(int128_t a, int128_t b)
  114. ^~~~~~~~~~~~~~~~~~~~
  115. encodings/aes_hardware.c:36:37: error: incompatible type for argument 2 of 'aes_expandkey_assist'
  116. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  117. ^
  118. encodings/aes_hardware.c:36:37: note: in definition of macro 'aes_keygen_assist'
  119. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  120. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  121. encodings/aes_hardware.c:64:17: note: expected 'int128_t {aka __vector(2) long long int}' but argument is of type 'int'
  122. static int128_t aes_expandkey_assist(int128_t a, int128_t b)
  123. ^~~~~~~~~~~~~~~~~~~~
  124. encodings/aes_hardware.c:36:37: error: incompatible type for argument 2 of 'aes_expandkey_assist'
  125. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  126. ^
  127. encodings/aes_hardware.c:36:37: note: in definition of macro 'aes_keygen_assist'
  128. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  129. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  130. encodings/aes_hardware.c:64:17: note: expected 'int128_t {aka __vector(2) long long int}' but argument is of type 'int'
  131. static int128_t aes_expandkey_assist(int128_t a, int128_t b)
  132. ^~~~~~~~~~~~~~~~~~~~
  133. encodings/aes_hardware.c:36:37: error: incompatible type for argument 2 of 'aes_expandkey_assist'
  134. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  135. ^
  136. encodings/aes_hardware.c:36:37: note: in definition of macro 'aes_keygen_assist'
  137. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  138. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  139. encodings/aes_hardware.c:64:17: note: expected 'int128_t {aka __vector(2) long long int}' but argument is of type 'int'
  140. static int128_t aes_expandkey_assist(int128_t a, int128_t b)
  141. ^~~~~~~~~~~~~~~~~~~~
  142. encodings/aes_hardware.c:36:37: error: incompatible type for argument 2 of 'aes_expandkey_assist'
  143. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  144. ^
  145. encodings/aes_hardware.c:36:37: note: in definition of macro 'aes_keygen_assist'
  146. #define aes_keygen_assist __builtin_ia32_aeskeygenassist128
  147. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  148. encodings/aes_hardware.c:64:17: note: expected 'int128_t {aka __vector(2) long long int}' but argument is of type 'int'
  149. static int128_t aes_expandkey_assist(int128_t a, int128_t b)
  150. ^~~~~~~~~~~~~~~~~~~~
  151. encodings/aes_hardware.c: In function 'aes_hardware_encrypt':
  152. encodings/aes_hardware.c:34:37: warning: implicit declaration of function '__builtin_ia32_aesenc128' [-Wimplicit-function-declaration]
  153. #define aes_enc __builtin_ia32_aesenc128
  154. ^
  155. encodings/aes_hardware.c:116:9: note: in expansion of macro 'aes_enc'
  156. v = aes_enc(v, rk[1]);
  157. ^~~~~~~
  158. encodings/aes_hardware.c:116:7: error: incompatible types when assigning to type 'int128_t {aka __vector(2) long long int}' from type 'int'
  159. v = aes_enc(v, rk[1]);
  160. ^
  161. encodings/aes_hardware.c:117:7: error: incompatible types when assigning to type 'int128_t {aka __vector(2) long long int}' from type 'int'
  162. v = aes_enc(v, rk[2]);
  163. ^
  164. encodings/aes_hardware.c:118:7: error: incompatible types when assigning to type 'int128_t {aka __vector(2) long long int}' from type 'int'
  165. v = aes_enc(v, rk[3]);
  166. ^
  167. encodings/aes_hardware.c:119:7: error: incompatible types when assigning to type 'int128_t {aka __vector(2) long long int}' from type 'int'
  168. v = aes_enc(v, rk[4]);
  169. ^
  170. encodings/aes_hardware.c:120:7: error: incompatible types when assigning to type 'int128_t {aka __vector(2) long long int}' from type 'int'
  171. v = aes_enc(v, rk[5]);
  172. ^
  173. encodings/aes_hardware.c:121:7: error: incompatible types when assigning to type 'int128_t {aka __vector(2) long long int}' from type 'int'
  174. v = aes_enc(v, rk[6]);
  175. ^
  176. encodings/aes_hardware.c:122:7: error: incompatible types when assigning to type 'int128_t {aka __vector(2) long long int}' from type 'int'
  177. v = aes_enc(v, rk[7]);
  178. ^
  179. encodings/aes_hardware.c:123:7: error: incompatible types when assigning to type 'int128_t {aka __vector(2) long long int}' from type 'int'
  180. v = aes_enc(v, rk[8]);
  181. ^
  182. encodings/aes_hardware.c:124:7: error: incompatible types when assigning to type 'int128_t {aka __vector(2) long long int}' from type 'int'
  183. v = aes_enc(v, rk[9]);
  184. ^
  185. encodings/aes_hardware.c:35:37: warning: implicit declaration of function '__builtin_ia32_aesenclast128' [-Wimplicit-function-declaration]
  186. #define aes_enc_last __builtin_ia32_aesenclast128
  187. ^
  188. encodings/aes_hardware.c:125:9: note: in expansion of macro 'aes_enc_last'
  189. v = aes_enc_last(v, rk[10]);
  190. ^~~~~~~~~~~~
  191. encodings/aes_hardware.c:125:7: error: incompatible types when assigning to type 'int128_t {aka __vector(2) long long int}' from type 'int'
  192. v = aes_enc_last(v, rk[10]);
  193. ^
  194. make[1]: *** [<builtin>: encodings/aes_hardware.o] Error 1
  195. make[1]: *** Waiting for unfinished jobs....
  196. make[1]: Leaving directory '/tmp/mnt/ssd/movie/reqrypt/src'
  197. make: *** [Makefile:20: client] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement