| ^~ rice.c:4815:34: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4815 | bits |= data_word >> (32 - extra); | ^~ rice.c:4815:37: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] 4815 | bits |= data_word >> (32 - extra); | ^~~~~~~~~ rice.c:4820:43: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4820 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:4824:36: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4824 | *s++ = bits; | ^~~~ rice.c:4871:43: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4871 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:4884:43: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4884 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:4897:43: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4897 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:4910:43: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4910 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:4927:47: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4927 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:4937:43: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4937 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:4941:36: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4941 | *s++ = zero_count + big_zero_count; | ^~~~~~~~~~ rice.c:4951:47: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4951 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:4961:43: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4961 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:4965:36: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4965 | *s++ = zero_count + big_zero_count; | ^~~~~~~~~~ rice.c:4977:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 4977 | *(s+1) = (*(s+1) << 1) | (data_word >> 30) & 1; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:4978:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 4978 | *(s+2) = (*(s+2) << 1) | (data_word >> 29) & 1; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:4979:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 4979 | *(s+3) = (*(s+3) << 1) | (data_word >> 28) & 1; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:4980:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 4980 | *(s+4) = (*(s+4) << 1) | (data_word >> 27) & 1; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:4981:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 4981 | *(s+5) = (*(s+5) << 1) | (data_word >> 26) & 1; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:4982:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 4982 | *(s+6) = (*(s+6) << 1) | (data_word >> 25) & 1; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:4983:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 4983 | *(s+7) = (*(s+7) << 1) | (data_word >> 24) & 1; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:4989:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 4989 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:4998:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 4998 | *(s+0) = (*(s+0) << 2) | (data_word >> 30) & 3; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:4999:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 4999 | *(s+1) = (*(s+1) << 2) | (data_word >> 28) & 3; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5000:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5000 | *(s+2) = (*(s+2) << 2) | (data_word >> 26) & 3; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5001:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5001 | *(s+3) = (*(s+3) << 2) | (data_word >> 24) & 3; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5002:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5002 | *(s+4) = (*(s+4) << 2) | (data_word >> 22) & 3; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5003:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5003 | *(s+5) = (*(s+5) << 2) | (data_word >> 20) & 3; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5004:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5004 | *(s+6) = (*(s+6) << 2) | (data_word >> 18) & 3; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5005:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5005 | *(s+7) = (*(s+7) << 2) | (data_word >> 16) & 3; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5009:47: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5009 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5017:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5017 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5018:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5018 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5019:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5019 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5020:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5020 | *(s+3) = (*(s+3) << 3) | (data_word >> 20) & 7; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5021:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5021 | *(s+4) = (*(s+4) << 3) | (data_word >> 17) & 7; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5027:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5027 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5031:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5031 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5032:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5032 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5033:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5033 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; | ~~~~~~~~~~~~~~~~~~^~~ rice.c:5039:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5039 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5048:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5048 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; | ~~~~~~~~~~~~~~~~~~^~~~~ rice.c:5049:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5049 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; | ~~~~~~~~~~~~~~~~~~^~~~~ rice.c:5050:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5050 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; | ~~~~~~~~~~~~~~~~~~^~~~~ rice.c:5051:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5051 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; | ~~~~~~~~~~~~~~~~~~^~~~~ rice.c:5055:47: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5055 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5058:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5058 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; | ~~~~~~~~~~~~~~~~~~^~~~~ rice.c:5059:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5059 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; | ~~~~~~~~~~~~~~~~~~^~~~~ rice.c:5060:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5060 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; | ~~~~~~~~~~~~~~~~~~^~~~~ rice.c:5061:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5061 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; | ~~~~~~~~~~~~~~~~~~^~~~~ rice.c:5065:47: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5065 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5073:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5073 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5074:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5074 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5075:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5075 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5081:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5081 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5085:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5085 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5086:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5086 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5087:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5087 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5093:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5093 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5097:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5097 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5098:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5098 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5104:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5104 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5113:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5113 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5114:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5114 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5120:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5120 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5124:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5124 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5125:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5125 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5131:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5131 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5135:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5135 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5136:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5136 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5142:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5142 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5146:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5146 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5147:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5147 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5153:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5153 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5162:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5162 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5163:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5163 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5169:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5169 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5173:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5173 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5174:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5174 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5180:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5180 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5184:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5184 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5185:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5185 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5191:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5191 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5195:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5195 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5196:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5196 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5202:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5202 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5211:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5211 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5212:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5212 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5216:47: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5216 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5219:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5219 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5220:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5220 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5224:47: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5224 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5227:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5227 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5228:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5228 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5232:47: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5232 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5235:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5235 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5236:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5236 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5240:47: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5240 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5255:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5255 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5265:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5265 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5285:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5285 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5295:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5295 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5307:47: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5307 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5316:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5316 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5339:39: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5339 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5349:35: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5349 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5353:28: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5353 | *s++ = zero_count + big_zero_count; | ^~~~~~~~~~ rice.c:5384:43: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5384 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5394:39: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5394 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5398:32: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5398 | *t++ = zero_count + big_zero_count; | ^~~~~~~~~~ rice.c:5404:29: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] 5404 | m = *t++; | ^ rice.c:5426:39: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5426 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5436:35: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5436 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5464:41: warning: conversion to 'long unsigned int' from 'long int' may change the sign of the result [-Wsign-conversion] 5464 | memset(s, 0, (end-s)*sizeof(int)); | ^ rice.c: In function 'szip_uncompress_memory': rice.c:5518:23: warning: cast discards 'const' qualifier from pointer target type [-Wcast-qual] 5518 | input_byte_data = (unsigned char *) in; | ^ rice.c:5530:44: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 5530 | interleave_array = (char *) malloc(out_bytes); | ^~~~~~~~~ rice.c: In function 'szip_check_params': rice.c:5800:5: warning: declaration of 'bits_per_pixel' shadows a global declaration [-Wshadow] 5800 | int bits_per_pixel; | ^~~~~~~~~~~~~~ rice.c:126:12: note: shadowed declaration is here 126 | static int bits_per_pixel; | ^~~~~~~~~~~~~~ rice.c:5801:5: warning: declaration of 'pixels_per_block' shadows a global declaration [-Wshadow] 5801 | int pixels_per_block; | ^~~~~~~~~~~~~~~~ rice.c:131:12: note: shadowed declaration is here 131 | static int pixels_per_block; | ^~~~~~~~~~~~~~~~ rice.c:5802:5: warning: declaration of 'pixels_per_scanline' shadows a global declaration [-Wshadow] 5802 | int pixels_per_scanline; | ^~~~~~~~~~~~~~~~~~~ rice.c:132:12: note: shadowed declaration is here 132 | static int pixels_per_scanline; | ^~~~~~~~~~~~~~~~~~~ rice.c:5812:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 5812 | *msg = "bits per pixel must be in range 1..24,32,64"; | ^ rice.c:5818:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 5818 | *msg = "maximum pixels per block exceeded"; | ^ rice.c:5824:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 5824 | *msg = "pixels per block must be even"; | ^ rice.c:5830:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 5830 | *msg = "pixels per block > pixels per scanline"; | ^ rice.c:5836:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 5836 | *msg = "maximum pixels per scanline exceeded"; | ^ rice.c:5842:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 5842 | *msg = "image pixels less than pixels per scanline"; | ^ rice.c: In function 'rice_decode': rice.c:5358:20: warning: 'ext2_bit' may be used uninitialized in this function [-Wmaybe-uninitialized] 5358 | if (ext2_bit) | ^ /bin/bash ../libtool --tag=CC --mode=link /home/giuliobenetti/autobuild/run/instance-2/output-1/host/bin/powerpc64le-linux-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g0 -D_FORTIFY_SOURCE=2 -ansi -pedantic -Wall -W -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsign-compare -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -O -fomit-frame-pointer -finline-functions -version-info 2:0:0 -o libsz.la -rpath /usr/lib rice.lo sz_api.lo encoding.lo -lm libtool: link: /home/giuliobenetti/autobuild/run/instance-2/output-1/host/bin/powerpc64le-linux-gcc -shared -fPIC -DPIC .libs/rice.o .libs/sz_api.o .libs/encoding.o -lm -O2 -g0 -O -Wl,-soname -Wl,libsz.so.2 -o .libs/libsz.so.2.0.0 libtool: link: (cd ".libs" && rm -f "libsz.so.2" && ln -s "libsz.so.2.0.0" "libsz.so.2") libtool: link: (cd ".libs" && rm -f "libsz.so" && ln -s "libsz.so.2.0.0" "libsz.so") libtool: link: ( cd ".libs" && rm -f "libsz.la" && ln -s "../libsz.la" "libsz.la" ) make[3]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/src' make[2]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/src' Making all in test make[2]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/test' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/test' make[2]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' make[2]: Nothing to be done for 'all-am'. make[2]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' make[1]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' >>> szip 2.1.1 Installing to staging directory PATH="/home/giuliobenetti/autobuild/run/instance-2/output-1/host/bin:/home/giuliobenetti/autobuild/run/instance-2/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin" /usr/bin/make -j5 DESTDIR=/home/giuliobenetti/autobuild/run/instance-2/output-1/host/powerpc64le-buildroot-linux-gnu/sysroot install -C /home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/ make[1]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' Making install in src make[2]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/src' make[3]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/src' /usr/bin/mkdir -p '/home/giuliobenetti/autobuild/run/instance-2/output-1/host/powerpc64le-buildroot-linux-gnu/sysroot/usr/lib' /usr/bin/mkdir -p '/home/giuliobenetti/autobuild/run/instance-2/output-1/host/powerpc64le-buildroot-linux-gnu/sysroot/usr/include' /bin/bash ../libtool --mode=install /usr/bin/install -c libsz.la '/home/giuliobenetti/autobuild/run/instance-2/output-1/host/powerpc64le-buildroot-linux-gnu/sysroot/usr/lib' /usr/bin/install -c -m 644 ricehdf.h szip_adpt.h szlib.h '/home/giuliobenetti/autobuild/run/instance-2/output-1/host/powerpc64le-buildroot-linux-gnu/sysroot/usr/include' libtool: install: /usr/bin/install -c .libs/libsz.so.2.0.0 /home/giuliobenetti/autobuild/run/instance-2/output-1/host/powerpc64le-buildroot-linux-gnu/sysroot/usr/lib/libsz.so.2.0.0 libtool: install: (cd /home/giuliobenetti/autobuild/run/instance-2/output-1/host/powerpc64le-buildroot-linux-gnu/sysroot/usr/lib && { ln -s -f libsz.so.2.0.0 libsz.so.2 || { rm -f libsz.so.2 && ln -s libsz.so.2.0.0 libsz.so.2; }; }) libtool: install: (cd /home/giuliobenetti/autobuild/run/instance-2/output-1/host/powerpc64le-buildroot-linux-gnu/sysroot/usr/lib && { ln -s -f libsz.so.2.0.0 libsz.so || { rm -f libsz.so && ln -s libsz.so.2.0.0 libsz.so; }; }) libtool: install: /usr/bin/install -c .libs/libsz.lai /home/giuliobenetti/autobuild/run/instance-2/output-1/host/powerpc64le-buildroot-linux-gnu/sysroot/usr/lib/libsz.la libtool: warning: remember to run 'libtool --finish /usr/lib' make[3]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/src' make[2]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/src' Making install in test make[2]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/test' make[3]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/test' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/test' make[2]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/test' make[2]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' make[3]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' make[2]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' make[1]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' >>> szip 2.1.1 Fixing libtool files for la in $(find /home/giuliobenetti/autobuild/run/instance-2/output-1/host/powerpc64le-buildroot-linux-gnu/sysroot/usr/lib* -name "*.la"); do \ cp -a "${la}" "${la}.fixed" && \ /usr/bin/sed -i -e "s:/home/giuliobenetti/autobuild/run/instance-2/output-1:@BASE_DIR@:g" \ -e "s:/home/giuliobenetti/autobuild/run/instance-2/output-1/host/powerpc64le-buildroot-linux-gnu/sysroot:@STAGING_DIR@:g" \ -e "s:/home/giuliobenetti/autobuild/run/instance-2/output-1/host/opt/ext-toolchain:@TOOLCHAIN_EXTERNAL_INSTALL_DIR@:g" \ -e "s:\(['= ]\)/usr:\\1@STAGING_DIR@/usr:g" \ -e "s:\(['= ]\)/lib:\\1@STAGING_DIR@/lib:g" \ -e "s:@TOOLCHAIN_EXTERNAL_INSTALL_DIR@:/home/giuliobenetti/autobuild/run/instance-2/output-1/host/opt/ext-toolchain:g" \ -e "s:@STAGING_DIR@:/home/giuliobenetti/autobuild/run/instance-2/output-1/host/powerpc64le-buildroot-linux-gnu/sysroot:g" \ -e "s:@BASE_DIR@:/home/giuliobenetti/autobuild/run/instance-2/output-1:g" \ "${la}.fixed" && \ if cmp -s "${la}" "${la}.fixed"; then \ rm -f "${la}.fixed"; \ else \ mv "${la}.fixed" "${la}"; \ fi || exit 1; \ done >>> szip 2.1.1 Installing to target PATH="/home/giuliobenetti/autobuild/run/instance-2/output-1/host/bin:/home/giuliobenetti/autobuild/run/instance-2/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin" /usr/bin/make -j5 DESTDIR=/home/giuliobenetti/autobuild/run/instance-2/output-1/target install -C /home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/ make[1]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' Making install in src make[2]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/src' make[3]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/src' /usr/bin/mkdir -p '/home/giuliobenetti/autobuild/run/instance-2/output-1/target/usr/lib' /usr/bin/mkdir -p '/home/giuliobenetti/autobuild/run/instance-2/output-1/target/usr/include' /bin/bash ../libtool --mode=install /usr/bin/install -c libsz.la '/home/giuliobenetti/autobuild/run/instance-2/output-1/target/usr/lib' /usr/bin/install -c -m 644 ricehdf.h szip_adpt.h szlib.h '/home/giuliobenetti/autobuild/run/instance-2/output-1/target/usr/include' libtool: install: /usr/bin/install -c .libs/libsz.so.2.0.0 /home/giuliobenetti/autobuild/run/instance-2/output-1/target/usr/lib/libsz.so.2.0.0 libtool: install: (cd /home/giuliobenetti/autobuild/run/instance-2/output-1/target/usr/lib && { ln -s -f libsz.so.2.0.0 libsz.so.2 || { rm -f libsz.so.2 && ln -s libsz.so.2.0.0 libsz.so.2; }; }) libtool: install: (cd /home/giuliobenetti/autobuild/run/instance-2/output-1/target/usr/lib && { ln -s -f libsz.so.2.0.0 libsz.so || { rm -f libsz.so && ln -s libsz.so.2.0.0 libsz.so; }; }) libtool: install: /usr/bin/install -c .libs/libsz.lai /home/giuliobenetti/autobuild/run/instance-2/output-1/target/usr/lib/libsz.la libtool: warning: remember to run 'libtool --finish /usr/lib' make[3]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/src' make[2]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/src' Making install in test make[2]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/test' make[3]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/test' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/test' make[2]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1/test' make[2]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' make[3]: Entering directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' make[2]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' make[1]: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/output-1/build/szip-2.1.1' tinydtls-0.9-rc1.tar.gz: OK (sha256: af73742835b5a66dc0b4a9c126ca8243b5db2986b4969d76e2b4531aa7e13f67) >>> tinydtls 0.9-rc1 Extracting gzip -d -c /home/giuliobenetti/autobuild/run/instance-2/dl/tinydtls/tinydtls-0.9-rc1.tar.gz | tar --strip-components=1 -C /home/giuliobenetti/autobuild/run/instance-2/output-1/build/tinydtls-0.9-rc1 -xf - >>> tinydtls 0.9-rc1 Patching Applying 0001-sha2-sha2.c-fix-build-on-big-endian.patch using patch: patching file sha2/sha2.c >>> tinydtls 0.9-rc1 Updating config.sub and config.guess for file in config.guess config.sub; do for i in $(find /home/giuliobenetti/autobuild/run/instance-2/output-1/build/tinydtls-0.9-rc1 -name $file); do cp support/gnuconfig/$file $i; done; done >>> tinydtls 0.9-rc1 Configuring >>> tinydtls 0.9-rc1 Autoreconfiguring configure.ac: error: required file 'ar-lib' not found make: *** [package/pkg-generic.mk:283: /home/giuliobenetti/autobuild/run/instance-2/output-1/build/tinydtls-0.9-rc1/.stamp_configured] Error 1 make: Leaving directory '/home/giuliobenetti/autobuild/run/instance-2/buildroot'