Advertisement
Guest User

Untitled

a guest
May 25th, 2015
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 56.13 KB | None | 0 0
  1. target thumb C: libexfat_mount <= external/exfat/fuse/main.c
  2. target thumb C: libexfat_fsck <= external/exfat/fsck/main.c
  3. external/exfat/fuse/main.c: In function 'fuse_exfat_readdir':
  4. external/exfat/fuse/main.c:91:34: warning: unused parameter 'offset' [-Wunused-parameter]
  5. fuse_fill_dir_t filler, loff_t offset, struct fuse_file_info* fi)
  6. ^
  7. external/exfat/fuse/main.c:91:65: warning: unused parameter 'fi' [-Wunused-parameter]
  8. fuse_fill_dir_t filler, loff_t offset, struct fuse_file_info* fi)
  9. ^
  10. external/exfat/fuse/main.c: In function 'fuse_exfat_release':
  11. external/exfat/fuse/main.c:150:43: warning: unused parameter 'path' [-Wunused-parameter]
  12. static int fuse_exfat_release(const char* path, struct fuse_file_info* fi)
  13. ^
  14. external/exfat/fuse/main.c: In function 'fuse_exfat_fsync':
  15. external/exfat/fuse/main.c:157:41: warning: unused parameter 'path' [-Wunused-parameter]
  16. static int fuse_exfat_fsync(const char* path, int datasync,
  17. ^
  18. external/exfat/fuse/main.c:157:51: warning: unused parameter 'datasync' [-Wunused-parameter]
  19. static int fuse_exfat_fsync(const char* path, int datasync,
  20. ^
  21. external/exfat/fuse/main.c: In function 'fuse_exfat_read':
  22. external/exfat/fuse/main.c:172:40: warning: unused parameter 'path' [-Wunused-parameter]
  23. static int fuse_exfat_read(const char* path, char* buffer, size_t size,
  24. ^
  25. external/exfat/fuse/main.c: In function 'fuse_exfat_write':
  26. external/exfat/fuse/main.c:184:41: warning: unused parameter 'path' [-Wunused-parameter]
  27. static int fuse_exfat_write(const char* path, const char* buffer, size_t size,
  28. ^
  29. external/exfat/fuse/main.c: In function 'fuse_exfat_mknod':
  30. external/exfat/fuse/main.c:228:54: warning: unused parameter 'mode' [-Wunused-parameter]
  31. static int fuse_exfat_mknod(const char* path, mode_t mode, dev_t dev)
  32. ^
  33. external/exfat/fuse/main.c:228:66: warning: unused parameter 'dev' [-Wunused-parameter]
  34. static int fuse_exfat_mknod(const char* path, mode_t mode, dev_t dev)
  35. ^
  36. external/exfat/fuse/main.c: In function 'fuse_exfat_mkdir':
  37. external/exfat/fuse/main.c:234:54: warning: unused parameter 'mode' [-Wunused-parameter]
  38. static int fuse_exfat_mkdir(const char* path, mode_t mode)
  39. ^
  40. external/exfat/fuse/main.c: In function 'fuse_exfat_chmod':
  41. external/exfat/fuse/main.c:262:41: warning: unused parameter 'path' [-Wunused-parameter]
  42. static int fuse_exfat_chmod(const char* path, mode_t mode)
  43. ^
  44. external/exfat/fuse/main.c: In function 'fuse_exfat_chown':
  45. external/exfat/fuse/main.c:273:41: warning: unused parameter 'path' [-Wunused-parameter]
  46. static int fuse_exfat_chown(const char* path, uid_t uid, gid_t gid)
  47. ^
  48. external/exfat/fuse/main.c: In function 'fuse_exfat_statfs':
  49. external/exfat/fuse/main.c:281:42: warning: unused parameter 'path' [-Wunused-parameter]
  50. static int fuse_exfat_statfs(const char* path, struct statvfs* sfs)
  51. ^
  52. external/exfat/fuse/main.c: In function 'fuse_exfat_destroy':
  53. external/exfat/fuse/main.c:314:38: warning: unused parameter 'unused' [-Wunused-parameter]
  54. static void fuse_exfat_destroy(void* unused)
  55. ^
  56. target thumb C: libexfat_mkfs <= external/exfat/mkfs/cbm.c
  57. target thumb C: libexfat_mkfs <= external/exfat/mkfs/fat.c
  58. target thumb C: libexfat_mkfs <= external/exfat/mkfs/main.c
  59. external/e2fsprogs/misc/tune2fs.c: In function 'main':
  60. external/e2fsprogs/misc/tune2fs.c:2041:3: warning: comparison is always false due to limited range of data type [-Wtype-limits]
  61. if (interval >= (1ULL << 32)) {
  62. ^
  63. target thumb C: libexfat_mkfs <= external/exfat/mkfs/mkexfat.c
  64. external/exfat/mkfs/main.c: In function 'setup_spc_bits':
  65. external/exfat/mkfs/main.c:124:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  66. if (volume_size < 256ull * 1024 * 1024)
  67. ^
  68. external/exfat/mkfs/main.c:126:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  69. if (volume_size < 32ull * 1024 * 1024 * 1024)
  70. ^
  71. external/exfat/mkfs/main.c: In function 'logarithm2':
  72. external/exfat/mkfs/main.c:183:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  73. for (i = 0; i < sizeof(int) * CHAR_BIT - 1; i++)
  74. ^
  75. target thumb C: libexfat_mkfs <= external/exfat/mkfs/rootdir.c
  76. target thumb C: libexfat_mkfs <= external/exfat/mkfs/uct.c
  77. target thumb C: libexfat_mkfs <= external/exfat/mkfs/uctc.c
  78. external/e2fsprogs/misc/mke2fs.c: In function 'main':
  79. external/e2fsprogs/misc/mke2fs.c:2699:10: warning: 'journal_blocks' may be used uninitialized in this function [-Wmaybe-uninitialized]
  80. retval = ext2fs_add_journal_inode(fs, journal_blocks,
  81. ^
  82. target thumb C: libexfat_mkfs <= external/exfat/mkfs/vbr.c
  83. target thumb C: libexfat <= external/exfat/libexfat/cluster.c
  84. target thumb C: libexfat <= external/exfat/libexfat/io.c
  85. target thumb C: libexfat <= external/exfat/libexfat/log.c
  86. target thumb C: libexfat <= external/exfat/libexfat/lookup.c
  87. external/exfat/libexfat/io.c: In function 'exfat_generic_pread':
  88. external/exfat/libexfat/io.c:318:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  89. if (offset >= node->size)
  90. ^
  91. external/exfat/libexfat/io.c: In function 'exfat_generic_pwrite':
  92. external/exfat/libexfat/io.c:363:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  93. if (offset > node->size)
  94. ^
  95. external/exfat/libexfat/io.c:366:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  96. if (offset + size > node->size)
  97. ^
  98. target thumb C: libexfat <= external/exfat/libexfat/mount.c
  99. target thumb C: libexfat <= external/exfat/libexfat/node.c
  100. external/exfat/libexfat/lookup.c: In function 'exfat_readdir':
  101. external/exfat/libexfat/lookup.c:49:48: warning: unused parameter 'ef' [-Wunused-parameter]
  102. struct exfat_node* exfat_readdir(struct exfat* ef, struct exfat_iterator* it)
  103. ^
  104. target thumb C: libexfat <= external/exfat/libexfat/time.c
  105. target thumb C: libexfat <= external/exfat/libexfat/utf.c
  106. target thumb C: libexfat <= external/exfat/libexfat/utils.c
  107. target thumb C: libfuse <= external/fuse/lib/../android/statvfs.c
  108. external/exfat/libexfat/utf.c: In function 'utf16_to_utf8':
  109. external/exfat/libexfat/utf.c:111:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  110. while (inp - input < insize && le16_to_cpu(*inp))
  111. ^
  112. external/exfat/libexfat/utf.c: In function 'utf8_to_utf16':
  113. external/exfat/libexfat/utf.c:205:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  114. while (inp - input < insize && *inp)
  115. ^
  116. target thumb C: libfuse <= external/fuse/lib/buffer.c
  117. external/exfat/libexfat/utils.c: In function 'exfat_start_checksum':
  118. external/exfat/libexfat/utils.c:60:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  119. for (i = 0; i < sizeof(struct exfat_entry); i++)
  120. ^
  121. external/exfat/libexfat/utils.c: In function 'exfat_add_checksum':
  122. external/exfat/libexfat/utils.c:70:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  123. for (i = 0; i < sizeof(struct exfat_entry); i++)
  124. ^
  125. external/exfat/libexfat/utils.c: In function 'exfat_calc_checksum':
  126. external/exfat/libexfat/utils.c:86:10: warning: missing initializer for field 'name' of 'struct exfat_entry_name' [-Wmissing-field-initializers]
  127. struct exfat_entry_name name_entry = {EXFAT_ENTRY_FILE_NAME, 0};
  128. ^
  129. In file included from external/exfat/libexfat/exfat.h:34:0,
  130. from external/exfat/libexfat/utils.c:23:
  131. external/exfat/libexfat/exfatfs.h:168:9: note: 'name' declared here
  132. le16_t name[EXFAT_ENAME_MAX]; /* in UTF-16LE */
  133. ^
  134. target thumb C: libfuse <= external/fuse/lib/cuse_lowlevel.c
  135. target thumb C: libfuse <= external/fuse/lib/fuse.c
  136. external/fuse/lib/buffer.c: In function 'fuse_buf_write':
  137. external/fuse/lib/buffer.c:48:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  138. res = pwrite64(dst->fd, src->mem + src_off, len,
  139. ^
  140. external/fuse/lib/buffer.c:51:34: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  141. res = write(dst->fd, src->mem + src_off, len);
  142. ^
  143. external/fuse/lib/buffer.c: In function 'fuse_buf_read':
  144. external/fuse/lib/buffer.c:82:34: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  145. res = pread(src->fd, dst->mem + dst_off, len,
  146. ^
  147. external/fuse/lib/buffer.c:85:33: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  148. res = read(src->fd, dst->mem + dst_off, len);
  149. ^
  150. external/fuse/lib/buffer.c: In function 'fuse_buf_fd_to_fd':
  151. external/fuse/lib/buffer.c:146:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  152. if (res < this_len)
  153. ^
  154. external/fuse/lib/buffer.c: In function 'fuse_buf_copy_one':
  155. external/fuse/lib/buffer.c:232:27: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  156. void *dstmem = dst->mem + dst_off;
  157. ^
  158. external/fuse/lib/buffer.c:233:27: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  159. void *srcmem = src->mem + src_off;
  160. ^
  161. external/fuse/lib/buffer.c:236:15: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  162. if (dstmem + len <= srcmem || srcmem + len <= dstmem)
  163. ^
  164. external/fuse/lib/buffer.c:236:41: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  165. if (dstmem + len <= srcmem || srcmem + len <= dstmem)
  166. ^
  167. external/fuse/lib/buffer.c: In function 'fuse_buf_copy':
  168. external/fuse/lib/buffer.c:313:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  169. if (res < len)
  170. ^
  171. external/exfat/libexfat/node.c: In function 'fetch_next_entry':
  172. external/exfat/libexfat/node.c:121:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  173. if (it->offset >= parent->size)
  174. ^
  175. external/exfat/libexfat/node.c: In function 'readdir':
  176. external/exfat/libexfat/node.c:205:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  177. if (it->offset >= parent->size)
  178. ^
  179. external/exfat/libexfat/node.c: In function 'find_slot':
  180. external/exfat/libexfat/node.c:779:46: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  181. if (it.offset + sizeof(struct exfat_entry) >= dir->size)
  182. ^
  183. external/exfat/libexfat/node.c: In function 'write_entry':
  184. external/exfat/libexfat/node.c:850:10: warning: missing initializer for field 'name' of 'struct exfat_entry_name' [-Wmissing-field-initializers]
  185. struct exfat_entry_name name_entry = {EXFAT_ENTRY_FILE_NAME, 0};
  186. ^
  187. In file included from external/exfat/libexfat/exfat.h:34:0,
  188. from external/exfat/libexfat/node.c:23:
  189. external/exfat/libexfat/exfatfs.h:168:9: note: 'name' declared here
  190. le16_t name[EXFAT_ENAME_MAX]; /* in UTF-16LE */
  191. ^
  192. external/exfat/libexfat/node.c: In function 'rename_entry':
  193. external/exfat/libexfat/node.c:982:10: warning: missing initializer for field 'name' of 'struct exfat_entry_name' [-Wmissing-field-initializers]
  194. struct exfat_entry_name name_entry = {EXFAT_ENTRY_FILE_NAME, 0};
  195. ^
  196. In file included from external/exfat/libexfat/exfat.h:34:0,
  197. from external/exfat/libexfat/node.c:23:
  198. external/exfat/libexfat/exfatfs.h:168:9: note: 'name' declared here
  199. le16_t name[EXFAT_ENAME_MAX]; /* in UTF-16LE */
  200. ^
  201. external/exfat/libexfat/node.c: In function 'find_label':
  202. external/exfat/libexfat/node.c:1117:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  203. if (it.offset >= ef->root->size)
  204. ^
  205. target thumb C: libfuse <= external/fuse/lib/fuse_kern_chan.c
  206. target thumb C: libfuse <= external/fuse/lib/fuse_loop.c
  207. target thumb C: libfuse <= external/fuse/lib/fuse_loop_mt.c
  208. target thumb C: libfuse <= external/fuse/lib/fuse_lowlevel.c
  209. target thumb C: libfuse <= external/fuse/lib/fuse_mt.c
  210. external/fuse/lib/fuse_loop_mt.c: In function 'thread_exit_handler':
  211. external/fuse/lib/fuse_loop_mt.c:66:37: warning: unused parameter 'sig' [-Wunused-parameter]
  212. static void thread_exit_handler(int sig)
  213. ^
  214. target thumb C: libfuse <= external/fuse/lib/fuse_opt.c
  215. external/fuse/lib/fuse_mt.c: In function 'mt_chan_receive':
  216. external/fuse/lib/fuse_mt.c:53:70: warning: unused parameter 'size' [-Wunused-parameter]
  217. static int mt_chan_receive(struct fuse_chan **chp, char *buf, size_t size)
  218. ^
  219. target thumb C: libfuse <= external/fuse/lib/fuse_session.c
  220. external/fuse/lib/fuse_opt.c: In function 'process_opt':
  221. external/fuse/lib/fuse_opt.c:236:25: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  222. void *var = ctx->data + opt->offset;
  223. ^
  224. target thumb C: libfuse <= external/fuse/lib/fuse_signals.c
  225. target thumb C: libfuse <= external/fuse/lib/helper.c
  226. target thumb C: libfuse <= external/fuse/lib/mount.c
  227. target thumb C: libfuse <= external/fuse/lib/mount_util.c
  228. external/fuse/lib/fuse_lowlevel.c: In function 'fuse_ll_copy_from_pipe':
  229. external/fuse/lib/fuse_lowlevel.c:2310:10: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  230. if (res < fuse_buf_size(dst)) {
  231. ^
  232. external/fuse/lib/fuse_lowlevel.c: In function 'fuse_ll_process_buf':
  233. external/fuse/lib/fuse_lowlevel.c:2425:28: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  234. tmpbuf.buf[0].mem = mbuf + write_header_size;
  235. ^
  236. external/fuse/lib/fuse_lowlevel.c: In function 'fuse_req_getgroups':
  237. external/fuse/lib/fuse_lowlevel.c:2804:10: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  238. if (ret == bufsize) {
  239. ^
  240. target thumb C: libfuse <= external/fuse/lib/ulockmgr.c
  241. Import includes file: /home/dorian/PAC/out/target/product/s2vep/obj/RECOVERY_EXECUTABLES/bu_recovery_intermediates/import_includes
  242. target thumb C++: libvoldclient <= bootable/recovery/voldclient/commands.cpp
  243. target thumb C++: libvoldclient <= bootable/recovery/voldclient/dispatcher.cpp
  244. target thumb C++: libvoldclient <= bootable/recovery/voldclient/event_loop.cpp
  245. target thumb C: libmtdutils <= bootable/recovery/mtdutils/mtdutils.c
  246. target thumb C: libmtdutils <= bootable/recovery/mtdutils/mounts.c
  247. Import includes file: /home/dorian/PAC/out/target/product/s2vep/obj/STATIC_LIBRARIES/libminadbd_intermediates/import_includes
  248. target thumb C: libtar <= external/libtar/lib/append.c
  249. target thumb C: libtar <= external/libtar/lib/block.c
  250. target thumb C: libtar <= external/libtar/lib/decode.c
  251. target thumb C: libtar <= external/libtar/lib/encode.c
  252. external/libtar/lib/block.c: In function 'th_write':
  253. external/libtar/lib/block.c:426:3: warning: implicit declaration of function 'snprintf' [-Wimplicit-function-declaration]
  254. snprintf(buf, T_BLOCKSIZE, "%d "SELINUX_TAG"%s\n", sz, t->th_buf.selinux_context);
  255. ^
  256. external/libtar/lib/block.c:426:3: warning: incompatible implicit declaration of built-in function 'snprintf' [enabled by default]
  257. target thumb C: libtar <= external/libtar/lib/extract.c
  258. target thumb C: libtar <= external/libtar/lib/handle.c
  259. external/libtar/lib/handle.c: In function 'tar_init':
  260. external/libtar/lib/handle.c:35:19: warning: unused parameter 'mode' [-Wunused-parameter]
  261. int oflags, int mode, int options)
  262. ^
  263. target thumb C: libtar <= external/libtar/listhash/libtar_hash.c
  264. target thumb C: libtar <= external/libtar/listhash/libtar_list.c
  265. external/fuse/lib/fuse.c: In function 'fuse_fs_read_buf':
  266. external/fuse/lib/fuse.c:1810:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  267. if (res >= 0 && fuse_buf_size(*bufp) > (int) size)
  268. ^
  269. external/fuse/lib/fuse.c: In function 'mtime_eq':
  270. external/fuse/lib/fuse.c:2433:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  271. return stbuf->st_mtime == ts->tv_sec &&
  272. ^
  273. external/fuse/lib/fuse.c: In function 'thread_exit_handler':
  274. external/fuse/lib/fuse.c:4572:37: warning: unused parameter 'sig' [-Wunused-parameter]
  275. static void thread_exit_handler(int sig)
  276. ^
  277. target thumb C: libtar <= external/libtar/lib/output.c
  278. target thumb C: libtar <= external/libtar/lib/util.c
  279. target thumb C: libtar <= external/libtar/lib/wrapper.c
  280. target thumb C: libtar <= external/libtar/compat/strlcpy.c
  281. target thumb C: libtar <= external/libtar/compat/basename.c
  282. target thumb C: libtar <= external/libtar/compat/dirname.c
  283. target thumb C: libtar <= external/libtar/compat/strmode.c
  284. Import includes file: /home/dorian/PAC/out/target/product/s2vep/obj/EXECUTABLES/recovery_intermediates/import_includes
  285. target thumb C: libmake_ext4fs_static <= bootable/recovery/../../system/extras/ext4_utils/make_ext4fs_main.c
  286. target thumb C: libminizip_static <= bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c
  287. target thumb C: libminizip_static <= bootable/recovery/../../external/zlib/src/contrib/minizip/minizip.c
  288. target thumb C: libminizip_static <= bootable/recovery/../../external/zlib/src/contrib/minizip/zip.c
  289. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c: In function 'fopen_file_func':
  290. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c:95:49: warning: unused parameter 'opaque' [-Wunused-parameter]
  291. static voidpf ZCALLBACK fopen_file_func (voidpf opaque, const char* filename, int mode)
  292. ^
  293. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c: In function 'fopen64_file_func':
  294. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c:113:51: warning: unused parameter 'opaque' [-Wunused-parameter]
  295. static voidpf ZCALLBACK fopen64_file_func (voidpf opaque, const void* filename, int mode)
  296. ^
  297. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c: In function 'fread_file_func':
  298. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c:132:48: warning: unused parameter 'opaque' [-Wunused-parameter]
  299. static uLong ZCALLBACK fread_file_func (voidpf opaque, voidpf stream, void* buf, uLong size)
  300. ^
  301. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c: In function 'fwrite_file_func':
  302. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c:139:49: warning: unused parameter 'opaque' [-Wunused-parameter]
  303. static uLong ZCALLBACK fwrite_file_func (voidpf opaque, voidpf stream, const void* buf, uLong size)
  304. ^
  305. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c: In function 'ftell_file_func':
  306. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c:146:47: warning: unused parameter 'opaque' [-Wunused-parameter]
  307. static long ZCALLBACK ftell_file_func (voidpf opaque, voidpf stream)
  308. ^
  309. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c: In function 'ftell64_file_func':
  310. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c:154:53: warning: unused parameter 'opaque' [-Wunused-parameter]
  311. static ZPOS64_T ZCALLBACK ftell64_file_func (voidpf opaque, voidpf stream)
  312. ^
  313. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c: In function 'fseek_file_func':
  314. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c:161:48: warning: unused parameter 'opaque' [-Wunused-parameter]
  315. static long ZCALLBACK fseek_file_func (voidpf opaque, voidpf stream, uLong offset, int origin)
  316. ^
  317. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c: In function 'fseek64_file_func':
  318. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c:184:50: warning: unused parameter 'opaque' [-Wunused-parameter]
  319. static long ZCALLBACK fseek64_file_func (voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)
  320. ^
  321. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c: In function 'fclose_file_func':
  322. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c:210:47: warning: unused parameter 'opaque' [-Wunused-parameter]
  323. static int ZCALLBACK fclose_file_func (voidpf opaque, voidpf stream)
  324. ^
  325. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c: In function 'ferror_file_func':
  326. bootable/recovery/../../external/zlib/src/contrib/minizip/ioapi.c:217:47: warning: unused parameter 'opaque' [-Wunused-parameter]
  327. static int ZCALLBACK ferror_file_func (voidpf opaque, voidpf stream)
  328. ^
  329. target thumb C: libfsck_msdos <= external/fsck_msdos/fragment.c
  330. target thumb C: libfsck_msdos <= external/fsck_msdos/fatcache.c
  331. bootable/recovery/../../external/zlib/src/contrib/minizip/minizip.c:97:13: warning: extra tokens at end of #ifdef directive [enabled by default]
  332. #ifdef unix || __APPLE__
  333. ^
  334. bootable/recovery/../../external/zlib/src/contrib/minizip/minizip.c: In function 'filetime':
  335. bootable/recovery/../../external/zlib/src/contrib/minizip/minizip.c:101:12: warning: unused parameter 'dt' [-Wunused-parameter]
  336. uLong *dt; /* dostime */
  337. ^
  338. bootable/recovery/../../external/zlib/src/contrib/minizip/minizip.c: In function 'minizip_main':
  339. bootable/recovery/../../external/zlib/src/contrib/minizip/minizip.c:495:20: warning: 'fin' may be used uninitialized in this function [-Wmaybe-uninitialized]
  340. if (fin)
  341. ^
  342. target thumb C: libfsck_msdos <= external/fsck_msdos/boot.c
  343. target thumb C: libfsck_msdos <= external/fsck_msdos/check.c
  344. external/fsck_msdos/boot.c: In function 'readboot':
  345. external/fsck_msdos/boot.c:61:39: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  346. if (read(dosfs, block, sizeof block) < sizeof block) {
  347. ^
  348. external/fsck_msdos/boot.c:141:7: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  349. != boot->FSInfo * boot->BytesPerSec
  350. ^
  351. external/fsck_msdos/boot.c:168:9: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  352. != boot->FSInfo * boot->BytesPerSec
  353. ^
  354. external/fsck_msdos/boot.c:188:7: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  355. != boot->Backup * boot->BytesPerSec
  356. ^
  357. external/fsck_msdos/boot.c: In function 'writefsinfo':
  358. external/fsck_msdos/boot.c:297:6: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  359. != boot->FSInfo * boot->BytesPerSec
  360. ^
  361. external/fsck_msdos/boot.c:311:6: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  362. != boot->FSInfo * boot->BytesPerSec
  363. ^
  364. external/fsck_msdos/fatcache.c: In function 'New_fatentry':
  365. external/fsck_msdos/fatcache.c:384:4: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
  366. exit(0);
  367. ^
  368. external/fsck_msdos/fatcache.c:384:4: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default]
  369. external/fsck_msdos/fatcache.c: In function 'New_fatcache':
  370. external/fsck_msdos/fatcache.c:396:4: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default]
  371. exit(0);
  372. ^
  373. target thumb C: libfsck_msdos <= external/fsck_msdos/dir.c
  374. target thumb C: libfsck_msdos <= external/fsck_msdos/fat.c
  375. target thumb C: libfsck_msdos <= external/fsck_msdos/main.c
  376. target thumb C: libminipigz <= external/pigz/pigz.c
  377. In file included from bootable/recovery/../../external/zlib/src/contrib/minizip/zip.c:186:0:
  378. bootable/recovery/../../external/zlib/src/contrib/minizip/crypt.h: In function 'decrypt_byte':
  379. bootable/recovery/../../external/zlib/src/contrib/minizip/crypt.h:35:62: warning: unused parameter 'pcrc_32_tab' [-Wunused-parameter]
  380. static int decrypt_byte(unsigned long* pkeys, const z_crc_t* pcrc_32_tab)
  381. ^
  382. target thumb C: libminipigz <= external/pigz/yarn.c
  383. external/fsck_msdos/fat.c: In function 'checkdirty':
  384. external/fsck_msdos/fat.c:101:42: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  385. if (read(fs, buffer, boot->BytesPerSec) != boot->BytesPerSec) {
  386. ^
  387. external/fsck_msdos/fat.c: In function '_readfat':
  388. external/fsck_msdos/fat.c:243:6: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  389. != boot->FATsecs * boot->BytesPerSec) {
  390. ^
  391. external/fsck_msdos/fat.c: In function 'writefat':
  392. external/fsck_msdos/fat.c:896:35: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  393. || write(fs, buffer, fatsz) != fatsz) {
  394. ^
  395. external/pigz/yarn.c: In function 'destruct':
  396. external/pigz/yarn.c:368:23: warning: unused parameter 'off_course' [-Wunused-parameter]
  397. void destruct(thread *off_course)
  398. ^
  399. target thumb C: libreboot_static <= bootable/recovery/../../system/core/reboot/reboot.c
  400. target thumb C: libsdcard <= system/core/sdcard/sdcard.c
  401. external/fsck_msdos/dir.c: In function 'reconnect':
  402. external/fsck_msdos/dir.c:1170:48: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  403. || read(dosfs, lfbuf, boot->ClusterSize) != boot->ClusterSize) {
  404. ^
  405. external/fsck_msdos/dir.c:1200:48: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  406. || write(dosfs, lfbuf, boot->ClusterSize) != boot->ClusterSize) {
  407. ^
  408. target thumb C: libminzip <= bootable/recovery/minzip/Hash.c
  409. target thumb C: libminzip <= bootable/recovery/minzip/SysUtil.c
  410. target thumb C: libminzip <= bootable/recovery/minzip/DirUtil.c
  411. target thumb C: libminzip <= bootable/recovery/minzip/Inlines.c
  412. target thumb C: libminzip <= bootable/recovery/minzip/Zip.c
  413. target thumb C: libbusybox <= external/busybox/android/libc/__set_errno.c
  414. target thumb C: libbusybox <= external/busybox/archival/bbunzip.c
  415. target thumb C: libbusybox <= external/busybox/archival/bzip2.c
  416. target thumb C: libbusybox <= external/busybox/archival/cpio.c
  417. target thumb C: libbusybox <= external/busybox/archival/gzip.c
  418. target thumb C: libbusybox <= external/busybox/archival/libarchive/lzo1x_1.c
  419. target thumb C: libbusybox <= external/busybox/archival/libarchive/lzo1x_1o.c
  420. target thumb C: libbusybox <= external/busybox/archival/libarchive/lzo1x_d.c
  421. target thumb C: libbusybox <= external/busybox/archival/lzop.c
  422. target thumb C: libbusybox <= external/busybox/archival/tar.c
  423. external/pigz/pigz.c: In function 'process':
  424. external/pigz/pigz.c:3105:51: warning: signed and unsigned type in conditional expression [-Wsign-compare]
  425. (fstat(g.ind, &st) ? time(NULL) : st.st_mtime) : 0;
  426. ^
  427. external/pigz/pigz.c: In function 'compress_thread':
  428. external/pigz/pigz.c:1346:28: warning: 'temp' may be used uninitialized in this function [-Wmaybe-uninitialized]
  429. memcpy(temp->buf, job->out->buf + (len - left), left);
  430. ^
  431. target thumb C: libbusybox <= external/busybox/archival/unzip.c
  432. In file included from external/busybox/archival/bzip2.c:67:0:
  433. external/busybox/archival/libarchive/bz/compress.c: In function 'sendMTFValues':
  434. external/busybox/archival/libarchive/bz/compress.c:408:17: warning: 'cost[5]' may be used uninitialized in this function [-Wmaybe-uninitialized]
  435. if (cost[t] < bc) {
  436. ^
  437. external/busybox/archival/libarchive/bz/compress.c:408:17: warning: 'cost[4]' may be used uninitialized in this function [-Wmaybe-uninitialized]
  438. external/busybox/archival/libarchive/bz/compress.c:408:17: warning: 'cost[3]' may be used uninitialized in this function [-Wmaybe-uninitialized]
  439. external/busybox/archival/libarchive/bz/compress.c:408:17: warning: 'cost[2]' may be used uninitialized in this function [-Wmaybe-uninitialized]
  440. target thumb C: libbusybox <= external/busybox/archival/libarchive/data_align.c
  441. target thumb C: libbusybox <= external/busybox/archival/libarchive/data_extract_all.c
  442. target thumb C: libbusybox <= external/busybox/archival/libarchive/data_extract_to_stdout.c
  443. target thumb C: libbusybox <= external/busybox/archival/libarchive/data_skip.c
  444. target thumb C: libbusybox <= external/busybox/archival/libarchive/decompress_bunzip2.c
  445. target thumb C: libbusybox <= external/busybox/archival/libarchive/decompress_gunzip.c
  446. target thumb C: libbusybox <= external/busybox/archival/libarchive/filter_accept_all.c
  447. target thumb C: libbusybox <= external/busybox/archival/libarchive/filter_accept_list.c
  448. target thumb C: libbusybox <= external/busybox/archival/libarchive/filter_accept_reject_list.c
  449. target thumb C: libbusybox <= external/busybox/archival/libarchive/find_list_entry.c
  450. target thumb C: libbusybox <= external/busybox/archival/libarchive/get_header_cpio.c
  451. target thumb C: libbusybox <= external/busybox/archival/libarchive/get_header_tar.c
  452. target thumb C: libbusybox <= external/busybox/archival/libarchive/get_header_tar_bz2.c
  453. target thumb C: libbusybox <= external/busybox/archival/libarchive/get_header_tar_gz.c
  454. target thumb C: libbusybox <= external/busybox/archival/libarchive/header_list.c
  455. target thumb C: libbusybox <= external/busybox/archival/libarchive/header_skip.c
  456. target thumb C: libbusybox <= external/busybox/archival/libarchive/header_verbose_list.c
  457. target thumb C: libbusybox <= external/busybox/archival/libarchive/init_handle.c
  458. target thumb C: libbusybox <= external/busybox/archival/libarchive/open_transformer.c
  459. target thumb C: libbusybox <= external/busybox/archival/libarchive/seek_by_jump.c
  460. target thumb C: libbusybox <= external/busybox/archival/libarchive/seek_by_read.c
  461. target thumb C: libbusybox <= external/busybox/archival/libarchive/decompress_unlzma.c
  462. target thumb C: libbusybox <= external/busybox/archival/libarchive/decompress_unxz.c
  463. target thumb C: libbusybox <= external/busybox/console-tools/clear.c
  464. target thumb C: libbusybox <= external/busybox/console-tools/reset.c
  465. target thumb C: libbusybox <= external/busybox/console-tools/resize.c
  466. target thumb C: libbusybox <= external/busybox/console-tools/setconsole.c
  467. target thumb C: libbusybox <= external/busybox/coreutils/basename.c
  468. target thumb C: libbusybox <= external/busybox/coreutils/cal.c
  469. target thumb C: libbusybox <= external/busybox/coreutils/cat.c
  470. target thumb C: libbusybox <= external/busybox/coreutils/catv.c
  471. target thumb C: libbusybox <= external/busybox/coreutils/chgrp.c
  472. target thumb C: libbusybox <= external/busybox/coreutils/chmod.c
  473. target thumb C: libbusybox <= external/busybox/coreutils/chown.c
  474. target thumb C: libbusybox <= external/busybox/coreutils/chroot.c
  475. target thumb C: libbusybox <= external/busybox/coreutils/cp.c
  476. target thumb C: libbusybox <= external/busybox/coreutils/cut.c
  477. target thumb C: libbusybox <= external/busybox/coreutils/date.c
  478. target thumb C: libbusybox <= external/busybox/coreutils/dd.c
  479. target thumb C: libbusybox <= external/busybox/coreutils/df.c
  480. target thumb C: libbusybox <= external/busybox/coreutils/dirname.c
  481. target thumb C: libbusybox <= external/busybox/coreutils/dos2unix.c
  482. target thumb C: libbusybox <= external/busybox/coreutils/du.c
  483. target thumb C: libbusybox <= external/busybox/coreutils/echo.c
  484. target thumb C: libbusybox <= external/busybox/coreutils/expand.c
  485. target thumb C: libbusybox <= external/busybox/coreutils/env.c
  486. target thumb C: libbusybox <= external/busybox/coreutils/expr.c
  487. target thumb C: libbusybox <= external/busybox/coreutils/false.c
  488. target thumb C: libbusybox <= external/busybox/coreutils/fold.c
  489. target thumb C: libbusybox <= external/busybox/coreutils/head.c
  490. target thumb C: libbusybox <= external/busybox/coreutils/id.c
  491. target thumb C: libbusybox <= external/busybox/coreutils/install.c
  492. target thumb C: libbusybox <= external/busybox/coreutils/ln.c
  493. target thumb C: libbusybox <= external/busybox/coreutils/ls.c
  494. target thumb C: libbusybox <= external/busybox/coreutils/md5_sha1_sum.c
  495. target thumb C: libbusybox <= external/busybox/coreutils/mkdir.c
  496. target thumb C: libbusybox <= external/busybox/coreutils/mkfifo.c
  497. target thumb C: libbusybox <= external/busybox/coreutils/mknod.c
  498. target thumb C: libbusybox <= external/busybox/coreutils/mv.c
  499. target thumb C: libbusybox <= external/busybox/coreutils/nice.c
  500. target thumb C: libbusybox <= external/busybox/coreutils/nohup.c
  501. target thumb C: libbusybox <= external/busybox/coreutils/od.c
  502. target thumb C: libbusybox <= external/busybox/coreutils/printenv.c
  503. target thumb C: libbusybox <= external/busybox/coreutils/printf.c
  504. target thumb C: libbusybox <= external/busybox/coreutils/pwd.c
  505. target thumb C: libbusybox <= external/busybox/coreutils/readlink.c
  506. target thumb C: libbusybox <= external/busybox/coreutils/realpath.c
  507. target thumb C: libbusybox <= external/busybox/coreutils/rm.c
  508. target thumb C: libbusybox <= external/busybox/coreutils/rmdir.c
  509. target thumb C: libbusybox <= external/busybox/coreutils/seq.c
  510. target thumb C: libbusybox <= external/busybox/coreutils/sleep.c
  511. target thumb C: libbusybox <= external/busybox/coreutils/sort.c
  512. target thumb C: libbusybox <= external/busybox/coreutils/split.c
  513. target thumb C: libbusybox <= external/busybox/coreutils/stat.c
  514. target thumb C: libbusybox <= external/busybox/coreutils/stty.c
  515. target thumb C: libbusybox <= external/busybox/coreutils/sync.c
  516. target thumb C: libbusybox <= external/busybox/coreutils/tac.c
  517. target thumb C: libbusybox <= external/busybox/coreutils/tail.c
  518. target thumb C: libbusybox <= external/busybox/coreutils/tee.c
  519. target thumb C: libbusybox <= external/busybox/coreutils/test.c
  520. target thumb C: libbusybox <= external/busybox/coreutils/test_ptr_hack.c
  521. target thumb C: libbusybox <= external/busybox/coreutils/touch.c
  522. target thumb C: libbusybox <= external/busybox/coreutils/tr.c
  523. target thumb C: libbusybox <= external/busybox/coreutils/true.c
  524. target thumb C: libbusybox <= external/busybox/coreutils/uname.c
  525. target thumb C: libbusybox <= external/busybox/coreutils/uniq.c
  526. target thumb C: libbusybox <= external/busybox/coreutils/usleep.c
  527. target thumb C: libbusybox <= external/busybox/coreutils/uudecode.c
  528. target thumb C: libbusybox <= external/busybox/coreutils/uuencode.c
  529. target thumb C: libbusybox <= external/busybox/coreutils/wc.c
  530. target thumb C: libbusybox <= external/busybox/coreutils/whoami.c
  531. target thumb C: libbusybox <= external/busybox/coreutils/yes.c
  532. target thumb C: libbusybox <= external/busybox/coreutils/libcoreutils/cp_mv_stat.c
  533. target thumb C: libbusybox <= external/busybox/coreutils/libcoreutils/getopt_mk_fifo_nod.c
  534. target thumb C: libbusybox <= external/busybox/debianutils/mktemp.c
  535. target thumb C: libbusybox <= external/busybox/debianutils/run_parts.c
  536. target thumb C: libbusybox <= external/busybox/debianutils/which.c
  537. target thumb C: libbusybox <= external/busybox/e2fsprogs/e2fs_lib.c
  538. target thumb C: libbusybox <= external/busybox/e2fsprogs/chattr.c
  539. target thumb C: libbusybox <= external/busybox/e2fsprogs/lsattr.c
  540. target thumb C: libbusybox <= external/busybox/e2fsprogs/tune2fs.c
  541. target thumb C: libbusybox <= external/busybox/editors/awk.c
  542. target thumb C: libbusybox <= external/busybox/editors/cmp.c
  543. target thumb C: libbusybox <= external/busybox/editors/diff.c
  544. target thumb C: libbusybox <= external/busybox/editors/patch.c
  545. target thumb C: libbusybox <= external/busybox/editors/sed.c
  546. target thumb C: libbusybox <= external/busybox/findutils/find.c
  547. target thumb C: libbusybox <= external/busybox/findutils/grep.c
  548. target thumb C: libbusybox <= external/busybox/findutils/xargs.c
  549. target thumb C: libbusybox <= external/busybox/libbb/missing_syscalls.c
  550. target thumb C: libbusybox <= external/busybox/libbb/appletlib.c
  551. target thumb C: libbusybox <= external/busybox/libbb/ask_confirmation.c
  552. target thumb C: libbusybox <= external/busybox/libbb/bb_askpass.c
  553. target thumb C: libbusybox <= external/busybox/libbb/bb_do_delay.c
  554. target thumb C: libbusybox <= external/busybox/libbb/bb_pwd.c
  555. target thumb C: libbusybox <= external/busybox/libbb/bb_qsort.c
  556. target thumb C: libbusybox <= external/busybox/libbb/bb_strtonum.c
  557. target thumb C: libbusybox <= external/busybox/libbb/change_identity.c
  558. target thumb C: libbusybox <= external/busybox/libbb/chomp.c
  559. target thumb C: libbusybox <= external/busybox/libbb/compare_string_array.c
  560. target thumb C: libbusybox <= external/busybox/libbb/concat_path_file.c
  561. target thumb C: libbusybox <= external/busybox/libbb/concat_subpath_file.c
  562. target thumb C: libbusybox <= external/busybox/libbb/copy_file.c
  563. target thumb C: libbusybox <= external/busybox/libbb/copyfd.c
  564. target thumb C: libbusybox <= external/busybox/libbb/crc32.c
  565. target thumb C: libbusybox <= external/busybox/libbb/default_error_retval.c
  566. target thumb C: libbusybox <= external/busybox/libbb/device_open.c
  567. target thumb C: libbusybox <= external/busybox/libbb/dump.c
  568. target thumb C: libbusybox <= external/busybox/libbb/execable.c
  569. target thumb C: libbusybox <= external/busybox/libbb/fclose_nonstdin.c
  570. target thumb C: libbusybox <= external/busybox/libbb/fflush_stdout_and_exit.c
  571. target thumb C: libbusybox <= external/busybox/libbb/fgets_str.c
  572. target thumb C: libbusybox <= external/busybox/libbb/find_mount_point.c
  573. target thumb C: libbusybox <= external/busybox/libbb/find_pid_by_name.c
  574. target thumb C: libbusybox <= external/busybox/libbb/find_root_device.c
  575. target thumb C: libbusybox <= external/busybox/libbb/full_write.c
  576. target thumb C: libbusybox <= external/busybox/libbb/get_console.c
  577. target thumb C: libbusybox <= external/busybox/libbb/get_last_path_component.c
  578. target thumb C: libbusybox <= external/busybox/libbb/get_line_from_file.c
  579. target thumb C: libbusybox <= external/busybox/libbb/get_shell_name.c
  580. target thumb C: libbusybox <= external/busybox/libbb/endofname.c
  581. target thumb C: libbusybox <= external/busybox/libbb/in_ether.c
  582. target thumb C: libbusybox <= external/busybox/libbb/get_volsize.c
  583. target thumb C: libbusybox <= external/busybox/libbb/getopt32.c
  584. target thumb C: libbusybox <= external/busybox/libbb/getpty.c
  585. target thumb C: libbusybox <= external/busybox/libbb/herror_msg.c
  586. target thumb C: libbusybox <= external/busybox/libbb/human_readable.c
  587. target thumb C: libbusybox <= external/busybox/libbb/inet_common.c
  588. target thumb C: libbusybox <= external/busybox/libbb/info_msg.c
  589. target thumb C: libbusybox <= external/busybox/libbb/inode_hash.c
  590. target thumb C: libbusybox <= external/busybox/libbb/isdirectory.c
  591. target thumb C: libbusybox <= external/busybox/libbb/kernel_version.c
  592. target thumb C: libbusybox <= external/busybox/libbb/last_char_is.c
  593. target thumb C: libbusybox <= external/busybox/libbb/lineedit.c
  594. target thumb C: libbusybox <= external/busybox/libbb/lineedit_ptr_hack.c
  595. target thumb C: libbusybox <= external/busybox/libbb/llist.c
  596. target thumb C: libbusybox <= external/busybox/libbb/login.c
  597. target thumb C: libbusybox <= external/busybox/libbb/loop.c
  598. target thumb C: libbusybox <= external/busybox/libbb/make_directory.c
  599. target thumb C: libbusybox <= external/busybox/libbb/makedev.c
  600. target thumb C: libbusybox <= external/busybox/libbb/match_fstype.c
  601. target thumb C: libbusybox <= external/busybox/libbb/hash_md5_sha.c
  602. target thumb C: libbusybox <= external/busybox/libbb/bb_bswap_64.c
  603. target thumb C: libbusybox <= external/busybox/libbb/messages.c
  604. target thumb C: libbusybox <= external/busybox/libbb/mode_string.c
  605. target thumb C: libbusybox <= external/busybox/libbb/mtab.c
  606. target thumb C: libbusybox <= external/busybox/libbb/parse_config.c
  607. target thumb C: libbusybox <= external/busybox/libbb/parse_mode.c
  608. target thumb C: libbusybox <= external/busybox/libbb/perror_msg.c
  609. target thumb C: libbusybox <= external/busybox/libbb/perror_nomsg.c
  610. target thumb C: libbusybox <= external/busybox/libbb/perror_nomsg_and_die.c
  611. target thumb C: libbusybox <= external/busybox/libbb/pidfile.c
  612. target thumb C: libbusybox <= external/busybox/libbb/platform.c
  613. target thumb C: libbusybox <= external/busybox/libbb/print_flags.c
  614. target thumb C: libbusybox <= external/busybox/libbb/printable.c
  615. target thumb C: libbusybox <= external/busybox/libbb/printable_string.c
  616. target thumb C: libbusybox <= external/busybox/libbb/process_escape_sequence.c
  617. target thumb C: libbusybox <= external/busybox/libbb/procps.c
  618. target thumb C: libbusybox <= external/busybox/libbb/progress.c
  619. target thumb C: libbusybox <= external/busybox/libbb/ptr_to_globals.c
  620. target thumb C: libbusybox <= external/busybox/libbb/read.c
  621. target thumb C: libbusybox <= external/busybox/libbb/read_key.c
  622. target thumb C: libbusybox <= external/busybox/libbb/read_printf.c
  623. target thumb C: libbusybox <= external/busybox/libbb/recursive_action.c
  624. target thumb C: libbusybox <= external/busybox/libbb/remove_file.c
  625. target thumb C: libbusybox <= external/busybox/libbb/run_shell.c
  626. target thumb C: libbusybox <= external/busybox/libbb/safe_gethostname.c
  627. target thumb C: libbusybox <= external/busybox/libbb/safe_poll.c
  628. target thumb C: libbusybox <= external/busybox/libbb/safe_strncpy.c
  629. target thumb C: libbusybox <= external/busybox/libbb/safe_write.c
  630. target thumb C: libbusybox <= external/busybox/libbb/setup_environment.c
  631. target thumb C: libbusybox <= external/busybox/libbb/signals.c
  632. target thumb C: libbusybox <= external/busybox/libbb/simplify_path.c
  633. target thumb C: libbusybox <= external/busybox/libbb/single_argv.c
  634. target thumb C: libbusybox <= external/busybox/libbb/skip_whitespace.c
  635. target thumb C: libbusybox <= external/busybox/libbb/speed_table.c
  636. target thumb C: libbusybox <= external/busybox/libbb/str_tolower.c
  637. target thumb C: libbusybox <= external/busybox/libbb/strrstr.c
  638. target thumb C: libbusybox <= external/busybox/libbb/time.c
  639. target thumb C: libbusybox <= external/busybox/libbb/trim.c
  640. target thumb C: libbusybox <= external/busybox/libbb/u_signal_names.c
  641. target thumb C: libbusybox <= external/busybox/libbb/udp_io.c
  642. target thumb C: libbusybox <= external/busybox/libbb/uuencode.c
  643. target thumb C: libbusybox <= external/busybox/libbb/vdprintf.c
  644. target thumb C: libbusybox <= external/busybox/libbb/verror_msg.c
  645. target thumb C: libbusybox <= external/busybox/libbb/vfork_daemon_rexec.c
  646. target thumb C: libbusybox <= external/busybox/libbb/warn_ignoring_args.c
  647. target thumb C: libbusybox <= external/busybox/libbb/wfopen.c
  648. target thumb C: libbusybox <= external/busybox/libbb/wfopen_input.c
  649. target thumb C: libbusybox <= external/busybox/libbb/write.c
  650. target thumb C: libbusybox <= external/busybox/libbb/xatonum.c
  651. target thumb C: libbusybox <= external/busybox/libbb/xconnect.c
  652. target thumb C: libbusybox <= external/busybox/libbb/xfunc_die.c
  653. target thumb C: libbusybox <= external/busybox/libbb/xfuncs.c
  654. external/busybox/libbb/xconnect.c: In function 'get_sock_lsa':
  655. external/busybox/libbb/xconnect.c:72:2: warning: passing argument 2 of 'get_lsa' from incompatible pointer type [enabled by default]
  656. return get_lsa(fd, getsockname);
  657. ^
  658. external/busybox/libbb/xconnect.c:51:26: note: expected 'int (*)(int, struct sockaddr *, bb_socklen_t *)' but argument is of type 'int (*)(int, struct sockaddr *, socklen_t *)'
  659. static len_and_sockaddr* get_lsa(int fd, int (*get_name)(int fd, struct sockaddr *addr, socklen_t *addrlen))
  660. ^
  661. external/busybox/libbb/xconnect.c: In function 'get_peer_lsa':
  662. external/busybox/libbb/xconnect.c:77:2: warning: passing argument 2 of 'get_lsa' from incompatible pointer type [enabled by default]
  663. return get_lsa(fd, getpeername);
  664. ^
  665. external/busybox/libbb/xconnect.c:51:26: note: expected 'int (*)(int, struct sockaddr *, bb_socklen_t *)' but argument is of type 'int (*)(int, struct sockaddr *, socklen_t *)'
  666. static len_and_sockaddr* get_lsa(int fd, int (*get_name)(int fd, struct sockaddr *addr, socklen_t *addrlen))
  667. ^
  668. target thumb C: libbusybox <= external/busybox/libbb/xfuncs_printf.c
  669. target thumb C: libbusybox <= external/busybox/libbb/xgetcwd.c
  670. target thumb C: libbusybox <= external/busybox/libbb/xgethostbyname.c
  671. target thumb C: libbusybox <= external/busybox/libbb/xreadlink.c
  672. target thumb C: libbusybox <= external/busybox/libbb/xrealloc_vector.c
  673. target thumb C: libbusybox <= external/busybox/libbb/xregcomp.c
  674. target thumb C: libbusybox <= external/busybox/libbb/unicode.c
  675. target thumb C: libbusybox <= external/busybox/libpwdgrp/uidgid_get.c
  676. target thumb C: libbusybox <= external/busybox/miscutils/bbconfig.c
  677. target thumb C: libbusybox <= external/busybox/miscutils/dc.c
  678. target thumb C: libbusybox <= external/busybox/miscutils/devmem.c
  679. target thumb C: libbusybox <= external/busybox/miscutils/less.c
  680. target thumb C: libbusybox <= external/busybox/miscutils/makedevs.c
  681. target thumb C: libbusybox <= external/busybox/miscutils/mountpoint.c
  682. target thumb C: libbusybox <= external/busybox/miscutils/nandwrite.c
  683. target thumb C: libbusybox <= external/busybox/miscutils/setserial.c
  684. target thumb C: libbusybox <= external/busybox/miscutils/setsid.c
  685. target thumb C: libbusybox <= external/busybox/miscutils/strings.c
  686. target thumb C: libbusybox <= external/busybox/miscutils/time.c
  687. target thumb C: libbusybox <= external/busybox/miscutils/ttysize.c
  688. target thumb C: libbusybox <= external/busybox/modutils/modinfo.c
  689. target thumb C: libbusybox <= external/busybox/modutils/modprobe-small.c
  690. target thumb C: libbusybox <= external/busybox/modutils/modutils.c
  691. target thumb C: libbusybox <= external/busybox/procps/free.c
  692. target thumb C: libbusybox <= external/busybox/procps/fuser.c
  693. target thumb C: libbusybox <= external/busybox/procps/kill.c
  694. target thumb C: libbusybox <= external/busybox/procps/lsof.c
  695. target thumb C: libbusybox <= external/busybox/procps/pgrep.c
  696. target thumb C: libbusybox <= external/busybox/procps/pidof.c
  697. target thumb C: libbusybox <= external/busybox/procps/ps.c
  698. target thumb C: libbusybox <= external/busybox/procps/pstree.c
  699. target thumb C: libbusybox <= external/busybox/procps/renice.c
  700. target thumb C: libbusybox <= external/busybox/procps/sysctl.c
  701. target thumb C: libbusybox <= external/busybox/procps/top.c
  702. target thumb C: libbusybox <= external/busybox/procps/uptime.c
  703. target thumb C: libbusybox <= external/busybox/procps/watch.c
  704. target thumb C: libbusybox <= external/busybox/shell/ash.c
  705. target thumb C: libbusybox <= external/busybox/shell/ash_ptr_hack.c
  706. target thumb C: libbusybox <= external/busybox/shell/math.c
  707. target thumb C: libbusybox <= external/busybox/shell/random.c
  708. target thumb C: libbusybox <= external/busybox/shell/shell_common.c
  709. target thumb C: libbusybox <= external/busybox/android/selinux/matchpathcon.c
  710. target thumb C: libbusybox <= external/busybox/android/selinux/stubs.c
  711. target thumb C: libbusybox <= external/busybox/libbb/selinux_common.c
  712. target thumb C: libbusybox <= external/busybox/selinux/chcon.c
  713. target thumb C: libbusybox <= external/busybox/selinux/selinuxenabled.c
  714. target thumb C: libbusybox <= external/busybox/selinux/getenforce.c
  715. target thumb C: libbusybox <= external/busybox/selinux/sestatus.c
  716. target thumb C: libbusybox <= external/busybox/selinux/setsebool.c
  717. target thumb C: libbusybox <= external/busybox/selinux/getsebool.c
  718. target thumb C: libbusybox <= external/busybox/selinux/setenforce.c
  719. target thumb C: libbusybox <= external/busybox/selinux/setfiles.c
  720. target thumb C: libbusybox <= external/busybox/selinux/matchpathcon.c
  721. target thumb C: libbusybox <= external/busybox/util-linux/blkid.c
  722. target thumb C: libbusybox <= external/busybox/util-linux/blockdev.c
  723. target thumb C: libbusybox <= external/busybox/util-linux/dmesg.c
  724. target thumb C: libbusybox <= external/busybox/util-linux/fdisk.c
  725. target thumb C: libbusybox <= external/busybox/util-linux/freeramdisk.c
  726. target thumb C: libbusybox <= external/busybox/util-linux/fstrim.c
  727. target thumb C: libbusybox <= external/busybox/util-linux/getopt.c
  728. target thumb C: libbusybox <= external/busybox/util-linux/hexdump.c
  729. target thumb C: libbusybox <= external/busybox/util-linux/losetup.c
  730. target thumb C: libbusybox <= external/busybox/util-linux/lspci.c
  731. target thumb C: libbusybox <= external/busybox/util-linux/lsusb.c
  732. target thumb C: libbusybox <= external/busybox/util-linux/mkfs_ext2.c
  733. target thumb C: libbusybox <= external/busybox/util-linux/mkfs_vfat.c
  734. target thumb C: libbusybox <= external/busybox/util-linux/mkswap.c
  735. target thumb C: libbusybox <= external/busybox/util-linux/more.c
  736. target thumb C: libbusybox <= external/busybox/util-linux/mount.c
  737. target thumb C: libbusybox <= external/busybox/util-linux/rdev.c
  738. target thumb C: libbusybox <= external/busybox/util-linux/rev.c
  739. target thumb C: libbusybox <= external/busybox/util-linux/swaponoff.c
  740. target thumb C: libbusybox <= external/busybox/util-linux/switch_root.c
  741. target thumb C: libbusybox <= external/busybox/util-linux/umount.c
  742. target thumb C: libbusybox <= external/busybox/util-linux/volume_id/get_devname.c
  743. target thumb C: libbusybox <= external/busybox/util-linux/volume_id/volume_id.c
  744. target thumb C: libbusybox <= external/busybox/util-linux/volume_id/util.c
  745. target thumb C: libbusybox <= external/busybox/util-linux/volume_id/ext.c
  746. target thumb C: libbusybox <= external/busybox/util-linux/volume_id/fat.c
  747. target thumb C: libbusybox <= external/busybox/util-linux/volume_id/iso9660.c
  748. target thumb C: libbusybox <= external/busybox/util-linux/volume_id/ntfs.c
  749. target thumb C: libbusybox <= external/busybox/util-linux/volume_id/linux_swap.c
  750. target thumb C: libbusybox <= external/busybox/util-linux/volume_id/exfat.c
  751. target thumb C: libbusybox <= external/busybox/util-linux/volume_id/squashfs.c
  752. target thumb C: libbusybox <= external/busybox/util-linux/volume_id/f2fs.c
  753. target thumb C: libbusybox <= external/busybox/android/libc/mktemp.c
  754. target thumb C: libbusybox <= external/busybox/android/libc/pty.c
  755. target thumb C: libbusybox <= external/busybox/android/android.c
  756. target thumb C: libfusesideload <= bootable/recovery/fuse_sideload.c
  757. host Java: dumpkey (/home/dorian/PAC/out/host/common/obj/JAVA_LIBRARIES/dumpkey_intermediates/classes)
  758. Import includes file: /home/dorian/PAC/out/host/linux-x86/obj32/EXECUTABLES/aapt_intermediates/import_includes
  759. host C++: libaapt_32 <= frameworks/base/tools/aapt/AaptAssets.cpp
  760. host C++: libaapt_32 <= frameworks/base/tools/aapt/AaptConfig.cpp
  761. bootable/recovery/fuse_sideload.c: In function 'fuse_reply':
  762. bootable/recovery/fuse_sideload.c:181:21: warning: assignment discards 'const' qualifier from pointer target type [enabled by default]
  763. vec[1].iov_base = data;
  764. ^
  765. host C++: libaapt_32 <= frameworks/base/tools/aapt/AaptUtil.cpp
  766. host C++: libaapt_32 <= frameworks/base/tools/aapt/AaptXml.cpp
  767. host C++: libaapt_32 <= frameworks/base/tools/aapt/ApkBuilder.cpp
  768. host C++: libaapt_32 <= frameworks/base/tools/aapt/Command.cpp
  769. host C++: libaapt_32 <= frameworks/base/tools/aapt/CrunchCache.cpp
  770. host C++: libaapt_32 <= frameworks/base/tools/aapt/FileFinder.cpp
  771. host C++: libaapt_32 <= frameworks/base/tools/aapt/Images.cpp
  772. host C++: libaapt_32 <= frameworks/base/tools/aapt/Package.cpp
  773. frameworks/base/tools/aapt/Images.cpp: In function 'android::status_t preProcessImage(const Bundle*, const android::sp<AaptAssets>&, const android::sp<AaptFile>&, android::String8*)':
  774. frameworks/base/tools/aapt/Images.cpp:1280:11: warning: variable 'fp' might be clobbered by 'longjmp' or 'vfork' [-Wclobbered]
  775. host C++: libaapt_32 <= frameworks/base/tools/aapt/pseudolocalize.cpp
  776. host C++: libaapt_32 <= frameworks/base/tools/aapt/Resource.cpp
  777. host C++: libaapt_32 <= frameworks/base/tools/aapt/ResourceFilter.cpp
  778. host C++: libaapt_32 <= frameworks/base/tools/aapt/ResourceIdCache.cpp
  779. host C++: libaapt_32 <= frameworks/base/tools/aapt/ResourceTable.cpp
  780. host C++: libaapt_32 <= frameworks/base/tools/aapt/SourcePos.cpp
  781. host C++: libaapt_32 <= frameworks/base/tools/aapt/StringPool.cpp
  782. host C++: libaapt_32 <= frameworks/base/tools/aapt/WorkQueue.cpp
  783. host C++: libaapt_32 <= frameworks/base/tools/aapt/XMLNode.cpp
  784. host C++: libaapt_32 <= frameworks/base/tools/aapt/ZipEntry.cpp
  785. host C++: libaapt_32 <= frameworks/base/tools/aapt/ZipFile.cpp
  786. host C: libaapt_32 <= frameworks/base/tools/aapt/qsort_r_compat.c
  787. host C++: libandroidfw_32 <= frameworks/base/libs/androidfw/Asset.cpp
  788. host C++: libandroidfw_32 <= frameworks/base/libs/androidfw/AssetDir.cpp
  789. host C++: libandroidfw_32 <= frameworks/base/libs/androidfw/AssetManager.cpp
  790. host C++: libandroidfw_32 <= frameworks/base/libs/androidfw/misc.cpp
  791. frameworks/base/include/androidfw/AssetManager.h: In constructor 'android::AssetManager::AssetManager(android::AssetManager::CacheMode)':
  792. frameworks/base/include/androidfw/AssetManager.h:416:21: warning: 'android::AssetManager::mCacheValid' will be initialized after [-Wreorder]
  793. frameworks/base/include/androidfw/AssetManager.h:404:14: warning: 'uint32_t android::AssetManager::mBasePackageIndex' [-Wreorder]
  794. frameworks/base/libs/androidfw/AssetManager.cpp:176:1: warning: when initialized here [-Wreorder]
  795. frameworks/base/libs/androidfw/AssetManager.cpp: In member function 'android::Asset* android::AssetManager::openNonAsset(int32_t, char const*, android::AssetManager::AccessMode)':
  796. frameworks/base/libs/androidfw/AssetManager.cpp:802:34: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  797. host C++: libandroidfw_32 <= frameworks/base/libs/androidfw/ObbFile.cpp
  798. host C++: libandroidfw_32 <= frameworks/base/libs/androidfw/ResourceTypes.cpp
  799. host C++: libandroidfw_32 <= frameworks/base/libs/androidfw/StreamingZipInflater.cpp
  800. host C++: libandroidfw_32 <= frameworks/base/libs/androidfw/TypeWrappers.cpp
  801. frameworks/base/libs/androidfw/ResourceTypes.cpp: In member function 'void android::ResTable::removeAssetsByCookie(const android::String8&, int32_t)':
  802. frameworks/base/libs/androidfw/ResourceTypes.cpp:6453:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  803. host C++: libandroidfw_32 <= frameworks/base/libs/androidfw/ZipFileRO.cpp
  804. host C++: libandroidfw_32 <= frameworks/base/libs/androidfw/ZipUtils.cpp
  805. host C: libpng_32 <= external/libpng/png.c
  806. host C: libpng_32 <= external/libpng/pngerror.c
  807. host C: libpng_32 <= external/libpng/pngget.c
  808. host C: libpng_32 <= external/libpng/pngmem.c
  809. host C: libpng_32 <= external/libpng/pngpread.c
  810. host C: libpng_32 <= external/libpng/pngread.c
  811. host C: libpng_32 <= external/libpng/pngrio.c
  812. host C: libpng_32 <= external/libpng/pngrtran.c
  813. host C: libpng_32 <= external/libpng/pngrutil.c
  814. host C: libpng_32 <= external/libpng/pngset.c
  815. host C: libpng_32 <= external/libpng/pngtrans.c
  816. host C: libpng_32 <= external/libpng/pngwio.c
  817. host C: libpng_32 <= external/libpng/pngwrite.c
  818. host C: libpng_32 <= external/libpng/pngwtran.c
  819. host C: libpng_32 <= external/libpng/pngwutil.c
  820. /tmp/ccEy3k8U.s: Assembler messages:
  821. /tmp/ccEy3k8U.s:7379: Error: no such instruction: `vfmadd312sd .LC64@GOTOFF(%ebx),%xmm1,%xmm0'
  822. /tmp/ccEy3k8U.s:7436: Error: no such instruction: `vfmadd312sd .LC64@GOTOFF(%ebx),%xmm1,%xmm0'
  823. /tmp/ccEy3k8U.s:7846: Error: no such instruction: `vfmadd312sd .LC64@GOTOFF(%ebx),%xmm1,%xmm0'
  824. build/core/binary.mk:699: recipe for target '/home/dorian/PAC/out/host/linux-x86/obj32/STATIC_LIBRARIES/libpng_intermediates/png.o' failed
  825. make: *** [/home/dorian/PAC/out/host/linux-x86/obj32/STATIC_LIBRARIES/libpng_intermediates/png.o] Error 1
  826. make: *** Waiting for unfinished jobs....
  827.  
  828. #### make failed to build some targets (07:19 (mm:ss)) ####
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement