example.c:101:44: warning: conversion to 'unsigned int' from 'long int' may alter its value [-Wconversion] c_stream.avail_in = c_stream.avail_out = buffer_size; ^~~~~~~~~~~ example.c:102:45: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (c_stream.avail_in + c_stream.total_in > len) ^ example.c:103:28: warning: conversion to 'long unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] c_stream.avail_in = len - c_stream.total_in; ^ example.c:103:24: warning: conversion to 'unsigned int' from 'long unsigned int' may alter its value [-Wconversion] c_stream.avail_in = len - c_stream.total_in; ^~~ example.c:115:24: warning: conversion to 'unsigned int' from 'long int' may alter its value [-Wconversion] c_stream.avail_out = buffer_size; ^~~~~~~~~~~ example.c:143:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (i = 0; i < c_stream.total_out; i++) ^ example.c:150:17: warning: conversion to 'long int' from 'long unsigned int' may change the sign of the result [-Wsign-conversion] return c_stream.total_out; ~~~~~~~~^~~~~~~~~~ example.c:61:7: warning: unused parameter 'in' [-Wunused-parameter] char *in; ^~ example.c: In function 'test_decoding': example.c:197:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] while (d_stream.total_in < size) ^ example.c:199:44: warning: conversion to 'unsigned int' from 'long int' may alter its value [-Wconversion] d_stream.avail_in = d_stream.avail_out = buffer_size; ^~~~~~~~~~~ example.c:200:45: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (d_stream.avail_in + d_stream.total_in > size) ^ example.c:201:29: warning: conversion to 'long unsigned int' from 'long int' may change the sign of the result [-Wsign-conversion] d_stream.avail_in = size - d_stream.total_in; ^ example.c:201:24: warning: conversion to 'unsigned int' from 'long unsigned int' may alter its value [-Wconversion] d_stream.avail_in = size - d_stream.total_in; ^~~~ example.c:214:28: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] while (d_stream.total_out < out_size) ^ example.c:216:24: warning: conversion to 'unsigned int' from 'long int' may alter its value [-Wconversion] d_stream.avail_out = buffer_size; ^~~~~~~~~~~ example.c:235:17: warning: conversion to 'long int' from 'long unsigned int' may change the sign of the result [-Wsign-conversion] return d_stream.total_out; ~~~~~~~~^~~~~~~~~~ example.c: At top level: example.c:250:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] main(argc, argv) ^~~~ example.c: In function 'main': example.c:274:29: warning: conversion to 'size_t {aka long unsigned int}' from 'long int' may change the sign of the result [-Wsign-conversion] compr = (char *) calloc(comprLen, 1); ^~~~~~~~ example.c:275:29: warning: conversion to 'size_t {aka long unsigned int}' from 'long int' may change the sign of the result [-Wsign-conversion] uncompr = (char *) calloc(uncomprLen, 1); ^~~~~~~~~~ example.c:306:13: warning: conversion to 'size_t {aka long unsigned int}' from 'long int' may change the sign of the result [-Wsign-conversion] size = test_encoding(bits_per_pixel, image_in, image_size, image_out, i); ^~~~~~~~~~~~~ example.c:307:51: warning: conversion to 'long int' from 'size_t {aka long unsigned int}' may change the sign of the result [-Wsign-conversion] size = test_decoding(bits_per_pixel, image_out, size, image_in2, image_size, i); ^~~~ example.c:307:10: warning: conversion to 'size_t {aka long unsigned int}' from 'long int' may change the sign of the result [-Wsign-conversion] size = test_decoding(bits_per_pixel, image_out, size, image_in2, image_size, i); ^~~~~~~~~~~~~ example.c:311:36: warning: conversion to 'size_t {aka long unsigned int}' from 'long int' may change the sign of the result [-Wsign-conversion] rv = memcmp(image_in, image_in2, image_size); ^~~~~~~~~~ example.c:327:58: warning: conversion to 'size_t {aka long unsigned int}' from 'long int' may change the sign of the result [-Wsign-conversion] rv = SZ_BufftoBuffCompress(image_out, &size, image_in, image_size, ¶ms); ^~~~~~~~~~ example.c:351:36: warning: conversion to 'size_t {aka long unsigned int}' from 'long int' may change the sign of the result [-Wsign-conversion] rv = memcmp(image_in, image_in2, image_size); ^~~~~~~~~~ burst_szip.c:36:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] put_pixel(pixel) ^~~~~~~~~ burst_szip.c: In function 'put_pixel': burst_szip.c:41:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (pixel > max) ^ burst_szip.c:50:9: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] ch = (pixel >> 24) & 0xff; ^ burst_szip.c:67:9: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] ch = (pixel >> 24) & 0xff; ^ burst_szip.c:73:9: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] ch = pixel >> 8; ^~~~~ burst_szip.c:82:9: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] ch = pixel >> 8; ^~~~~ In file included from burst_szip.c:1:0: burst_szip.c:86:8: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] putc(pixel, fp_out); ^ burst_szip.c: At top level: burst_szip.c:90:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] map_nn(sigma, end) ^~~~~~ burst_szip.c: In function 'map_nn': burst_szip.c:99:7: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] xp = *sigma; ^ burst_szip.c:103:6: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] x = *s; ^ burst_szip.c:108:11: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = del << 1; ^~~ burst_szip.c:110:11: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = x; ^ burst_szip.c:115:12: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = ((-del)<<1) - 1; ^ burst_szip.c:117:12: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = max-x; ^~~ burst_szip.c: At top level: burst_szip.c:125:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] random_scanline(pixels_per_block, width) ^~~~~~~~~~~~~~~ burst_szip.c: In function 'random_scanline': burst_szip.c:140:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (width > sizeof(scanline)/sizeof(unsigned)) ^ burst_szip.c:150:7: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] x = uni() * 6; ^~~ burst_szip.c:160:14: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] pixel = uni() * (max+1); ^~~ burst_szip.c:161:13: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^~~~~ burst_szip.c:167:13: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] pixel = uni() * (max+1); ^~~ burst_szip.c:168:13: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] delta = uni() * 32; ^~~ burst_szip.c:183:14: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] pixel = low + uni() * delta; ^~~ burst_szip.c:184:13: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^~~~~ burst_szip.c:190:13: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] pixel = uni() * (max+1); ^~~ burst_szip.c:191:13: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] delta = uni() * 128 + 1; ^~~ burst_szip.c:206:10: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] x = uni() * delta; ^~~ burst_szip.c:213:13: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^~~~~ burst_szip.c:219:13: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] pixel = uni() * (max+1); ^~~ burst_szip.c:221:13: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^~~~~ burst_szip.c:226:14: warning: conversion to 'int' from 'long int' may alter its value [-Wconversion] blocks = ((end - s) + pixels_per_block - 1)/pixels_per_block; ^ burst_szip.c:227:14: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] blocks = uni() * blocks + 1; ^~~ burst_szip.c:228:13: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] pixel = uni() * (max+1); ^~~ burst_szip.c:231:14: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^~~~~ burst_szip.c:237:13: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] pixel = uni() * (max+1); ^~~ burst_szip.c:238:13: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] delta = uni() * 8 + 1; ^~~ burst_szip.c:253:10: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] x = uni() * delta; ^~~ burst_szip.c:260:13: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^~~~~ burst_szip.c: At top level: burst_szip.c:275:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] random_float_scanline(pixels_per_block, width) ^~~~~~~~~~~~~~~~~~~~~ burst_szip.c: In function 'random_float_scanline': burst_szip.c:286:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (width > sizeof(scanline)/sizeof(float)) ^ burst_szip.c:303:17: warning: conversion to 'float' from 'double' may alter its value [-Wfloat-conversion] scanline[i] = y; ^ burst_szip.c:307:19: warning: conversion to 'size_t {aka long unsigned int}' from 'int' may change the sign of the result [-Wsign-conversion] fwrite(scanline, width, sizeof(float), fp_out); ^~~~~ burst_szip.c:276:5: warning: unused parameter 'pixels_per_block' [-Wunused-parameter] int pixels_per_block; ^~~~~~~~~~~~~~~~ burst_szip.c: At top level: burst_szip.c:311:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] random_double_scanline(pixels_per_block, width) ^~~~~~~~~~~~~~~~~~~~~~ burst_szip.c: In function 'random_double_scanline': burst_szip.c:322:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (width > sizeof(scanline)/sizeof(float)) ^ burst_szip.c:349:19: warning: conversion to 'size_t {aka long unsigned int}' from 'int' may change the sign of the result [-Wsign-conversion] fwrite(scanline, width, sizeof(double), fp_out); ^~~~~ burst_szip.c:312:5: warning: unused parameter 'pixels_per_block' [-Wunused-parameter] int pixels_per_block; ^~~~~~~~~~~~~~~~ burst_szip.c: At top level: burst_szip.c:353:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] usage(name) ^~~~~ burst_szip.c:361:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] main(argc, argv) ^~~~ burst_szip.c: In function 'main': burst_szip.c:450:12: warning: conversion to 'int' from 'double' may alter its value [-Wfloat-conversion] width = uni() * (width-1) + 1; ^~~ example.c:307:10: warning: 'bits_per_pixel' may be used uninitialized in this function [-Wmaybe-uninitialized] size = test_decoding(bits_per_pixel, image_out, size, image_in2, image_size, i); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /bin/sh ../libtool --tag=CC --mode=link /accts/mlweber1/instance-3/output/host/bin/aarch64-linux-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g2 -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 -o example example.o ../src/libsz.la -lm /bin/sh ../libtool --tag=CC --mode=link /accts/mlweber1/instance-3/output/host/bin/aarch64-linux-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g2 -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 -o burst_szip burst_szip.o ../test/libmcgill.la ../src/libsz.la -lm mkdir .libs /accts/mlweber1/instance-3/output/host/bin/aarch64-linux-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g2 -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 -o example example.o ../src/.libs/libsz.so -lm -Wl,--rpath -Wl,/accts/mlweber1/instance-3/output/build/szip-2.1/src/.libs /accts/mlweber1/instance-3/output/host/bin/aarch64-linux-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g2 -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 -o burst_szip burst_szip.o ../test/.libs/libmcgill.a ../src/.libs/libsz.so -lm -Wl,--rpath -Wl,/accts/mlweber1/instance-3/output/build/szip-2.1/src/.libs make[2]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1/examples' make[2]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1' make[2]: Nothing to be done for `all-am'. make[2]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1' make[1]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1' >>> szip 2.1 Installing to staging directory PATH="/accts/mlweber1/instance-3/output/host/bin:/accts/mlweber1/instance-3/output/host/sbin:/usr/bin:/bin" /usr/bin/make -j45 DESTDIR=/accts/mlweber1/instance-3/output/host/aarch64-buildroot-linux-gnu/sysroot install -C /accts/mlweber1/instance-3/output/build/szip-2.1/ make[1]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1' Making install in src make[2]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1/src' make[3]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1/src' test -z "/usr/lib" || /bin/mkdir -p "/accts/mlweber1/instance-3/output/host/aarch64-buildroot-linux-gnu/sysroot/usr/lib" test -z "/usr/include" || /bin/mkdir -p "/accts/mlweber1/instance-3/output/host/aarch64-buildroot-linux-gnu/sysroot/usr/include" /bin/sh ../libtool --mode=install /usr/bin/install -c 'libsz.la' '/accts/mlweber1/instance-3/output/host/aarch64-buildroot-linux-gnu/sysroot/usr/lib/libsz.la' /usr/bin/install -c -m 644 'ricehdf.h' '/accts/mlweber1/instance-3/output/host/aarch64-buildroot-linux-gnu/sysroot/usr/include/ricehdf.h' /usr/bin/install -c -m 644 'szip_adpt.h' '/accts/mlweber1/instance-3/output/host/aarch64-buildroot-linux-gnu/sysroot/usr/include/szip_adpt.h' /usr/bin/install -c -m 644 'szlib.h' '/accts/mlweber1/instance-3/output/host/aarch64-buildroot-linux-gnu/sysroot/usr/include/szlib.h' /usr/bin/install -c .libs/libsz.so.2.0.0 /accts/mlweber1/instance-3/output/host/aarch64-buildroot-linux-gnu/sysroot/usr/lib/libsz.so.2.0.0 (cd /accts/mlweber1/instance-3/output/host/aarch64-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; }; }) (cd /accts/mlweber1/instance-3/output/host/aarch64-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; }; }) /usr/bin/install -c .libs/libsz.lai /accts/mlweber1/instance-3/output/host/aarch64-buildroot-linux-gnu/sysroot/usr/lib/libsz.la libtool: install: warning: remember to run `libtool --finish /usr/lib' make[3]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1/src' make[2]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1/src' Making install in test make[2]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1/test' make[3]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.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 `/accts/mlweber1/instance-3/output/build/szip-2.1/test' make[2]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1/test' Making install in examples make[2]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1/examples' make[3]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1/examples' make[3]: Nothing to be done for `install-exec-am'. make[3]: Nothing to be done for `install-data-am'. make[3]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1/examples' make[2]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1/examples' make[2]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1' make[3]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.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 `/accts/mlweber1/instance-3/output/build/szip-2.1' make[2]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1' make[1]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1' >>> szip 2.1 Fixing libtool files >>> szip 2.1 Installing to target PATH="/accts/mlweber1/instance-3/output/host/bin:/accts/mlweber1/instance-3/output/host/sbin:/usr/bin:/bin" /usr/bin/make -j45 DESTDIR=/accts/mlweber1/instance-3/output/target install -C /accts/mlweber1/instance-3/output/build/szip-2.1/ make[1]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1' Making install in src make[2]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1/src' make[3]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1/src' test -z "/usr/lib" || /bin/mkdir -p "/accts/mlweber1/instance-3/output/target/usr/lib" test -z "/usr/include" || /bin/mkdir -p "/accts/mlweber1/instance-3/output/target/usr/include" /bin/sh ../libtool --mode=install /usr/bin/install -c 'libsz.la' '/accts/mlweber1/instance-3/output/target/usr/lib/libsz.la' /usr/bin/install -c -m 644 'ricehdf.h' '/accts/mlweber1/instance-3/output/target/usr/include/ricehdf.h' /usr/bin/install -c -m 644 'szip_adpt.h' '/accts/mlweber1/instance-3/output/target/usr/include/szip_adpt.h' /usr/bin/install -c -m 644 'szlib.h' '/accts/mlweber1/instance-3/output/target/usr/include/szlib.h' /usr/bin/install -c .libs/libsz.so.2.0.0 /accts/mlweber1/instance-3/output/target/usr/lib/libsz.so.2.0.0 (cd /accts/mlweber1/instance-3/output/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; }; }) (cd /accts/mlweber1/instance-3/output/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; }; }) /usr/bin/install -c .libs/libsz.lai /accts/mlweber1/instance-3/output/target/usr/lib/libsz.la libtool: install: warning: remember to run `libtool --finish /usr/lib' make[3]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1/src' make[2]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1/src' Making install in test make[2]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1/test' make[3]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.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 `/accts/mlweber1/instance-3/output/build/szip-2.1/test' make[2]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1/test' Making install in examples make[2]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1/examples' make[3]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1/examples' make[3]: Nothing to be done for `install-exec-am'. make[3]: Nothing to be done for `install-data-am'. make[3]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1/examples' make[2]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1/examples' make[2]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.1' make[3]: Entering directory `/accts/mlweber1/instance-3/output/build/szip-2.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 `/accts/mlweber1/instance-3/output/build/szip-2.1' make[2]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1' make[1]: Leaving directory `/accts/mlweber1/instance-3/output/build/szip-2.1' zd1211-firmware-1.4.tar.bz2: OK (sha256: 866308f6f59f7075f075d4959dff2ede47735c751251fecd1496df1ba4d338e1) >>> zd1211-firmware 1.4 Extracting bzcat /accts/mlweber1/instance-3/dl/zd1211-firmware-1.4.tar.bz2 | tar --strip-components=1 -C /accts/mlweber1/instance-3/output/build/zd1211-firmware-1.4 -xf - >>> zd1211-firmware 1.4 Patching >>> zd1211-firmware 1.4 Configuring >>> zd1211-firmware 1.4 Building >>> zd1211-firmware 1.4 Installing to target /usr/bin/install -d -m 0755 /accts/mlweber1/instance-3/output/target/lib/firmware/zd1211/ cp -dpf /accts/mlweber1/instance-3/output/build/zd1211-firmware-1.4/zd1211*{ub,uphr,ur} /accts/mlweber1/instance-3/output/target/lib/firmware/zd1211 >>> Finalizing target directory # Check files that are touched by more than one package ./support/scripts/check-uniq-files -t target /accts/mlweber1/instance-3/output/build/packages-file-list.txt ./support/scripts/check-uniq-files -t staging /accts/mlweber1/instance-3/output/build/packages-file-list-staging.txt ./support/scripts/check-uniq-files -t host /accts/mlweber1/instance-3/output/build/packages-file-list-host.txt Warning: host file "./share/info/dir" is touched by more than one package: ['host-m4', 'host-libtool', 'host-autoconf', 'host-automake', 'host-gettext'] /bin/sed -i -e '/# GENERIC_SERIAL$/s~^.*#~console::respawn:/sbin/getty -L console 0 vt100 #~' /accts/mlweber1/instance-3/output/target/etc/inittab /bin/sed -i -e '/^#.*-o remount,rw \/$/s~^#\+~~' /accts/mlweber1/instance-3/output/target/etc/inittab rm -rf /accts/mlweber1/instance-3/output/target/usr/lib/perl5/5.26.1/pod rm -rf /accts/mlweber1/instance-3/output/target/usr/lib/perl5/5.26.1/aarch64-linux/CORE find /accts/mlweber1/instance-3/output/target/usr/lib/perl5/ -name 'extralibs.ld' -print0 | xargs -0 rm -f find /accts/mlweber1/instance-3/output/target/usr/lib/perl5/ -name '*.bs' -print0 | xargs -0 rm -f find /accts/mlweber1/instance-3/output/target/usr/lib/perl5/ -name '.packlist' -print0 | xargs -0 rm -f mkdir -p /accts/mlweber1/instance-3/output/target/etc echo "buildroot" > /accts/mlweber1/instance-3/output/target/etc/hostname /bin/sed -i -e '$a \127.0.1.1\tbuildroot' -e '/^127.0.1.1/d' /accts/mlweber1/instance-3/output/target/etc/hosts mkdir -p /accts/mlweber1/instance-3/output/target/etc echo "Welcome to Buildroot" > /accts/mlweber1/instance-3/output/target/etc/issue /bin/sed -i -e s,^root:[^:]*:,root::, /accts/mlweber1/instance-3/output/target/etc/shadow rm -f /accts/mlweber1/instance-3/output/target/bin/sh rm -f /accts/mlweber1/instance-3/output/build/locales.nopurge for i in C en_US locale-archive; do echo $i >> /accts/mlweber1/instance-3/output/build/locales.nopurge; done for dir in ; do for langdir in $dir/*; do if [ -e "${langdir}" ]; then grep -qx "${langdir##*/}" /accts/mlweber1/instance-3/output/build/locales.nopurge || rm -rf $langdir; fi done; done if [ -d /accts/mlweber1/instance-3/output/target/usr/share/X11/locale ]; then for lang in C en_US; do if [ -f /accts/mlweber1/instance-3/output/target/usr/share/X11/locale/$lang/XLC_LOCALE ]; then echo "$lang/XLC_LOCALE: $lang"; fi done > /accts/mlweber1/instance-3/output/target/usr/share/X11/locale/locale.dir; fi rm -rf /accts/mlweber1/instance-3/output/target/usr/include /accts/mlweber1/instance-3/output/target/usr/share/aclocal \ /accts/mlweber1/instance-3/output/target/usr/lib/pkgconfig /accts/mlweber1/instance-3/output/target/usr/share/pkgconfig \ /accts/mlweber1/instance-3/output/target/usr/lib/cmake /accts/mlweber1/instance-3/output/target/usr/share/cmake find /accts/mlweber1/instance-3/output/target/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f find /accts/mlweber1/instance-3/output/target/lib/ /accts/mlweber1/instance-3/output/target/usr/lib/ /accts/mlweber1/instance-3/output/target/usr/libexec/ \ \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f find: `/accts/mlweber1/instance-3/output/target/usr/libexec/': No such file or directory rm -rf /accts/mlweber1/instance-3/output/target/usr/share/gdb rm -rf /accts/mlweber1/instance-3/output/target/usr/share/bash-completion rm -rf /accts/mlweber1/instance-3/output/target/usr/share/zsh rm -rf /accts/mlweber1/instance-3/output/target/usr/man /accts/mlweber1/instance-3/output/target/usr/share/man rm -rf /accts/mlweber1/instance-3/output/target/usr/info /accts/mlweber1/instance-3/output/target/usr/share/info rm -rf /accts/mlweber1/instance-3/output/target/usr/doc /accts/mlweber1/instance-3/output/target/usr/share/doc rm -rf /accts/mlweber1/instance-3/output/target/usr/share/gtk-doc rmdir /accts/mlweber1/instance-3/output/target/usr/share 2>/dev/null || true find /accts/mlweber1/instance-3/output/target -type f \( -perm /111 -o -name '*.so*' \) -not \( -name 'libpthread*.so*' -o -name 'ld-*.so*' -o -name '*.ko' \) -print0 | xargs -0 /accts/mlweber1/instance-3/output/host/bin/aarch64-linux-strip --remove-section=.comment --remove-section=.note 2>/dev/null || true find /accts/mlweber1/instance-3/output/target/lib/ -type f -name 'libpthread*.so*' | \ xargs -r /accts/mlweber1/instance-3/output/host/bin/aarch64-linux-strip --remove-section=.comment --remove-section=.note --strip-debug find /accts/mlweber1/instance-3/output/target/lib/ -type f -name 'ld-*.so*' | \ xargs -r /accts/mlweber1/instance-3/output/host/bin/aarch64-linux-strip --remove-section=.comment --remove-section=.note --strip-debug test -f /accts/mlweber1/instance-3/output/target/etc/ld.so.conf && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true test -d /accts/mlweber1/instance-3/output/target/etc/ld.so.conf.d && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf.d directory"; exit 1; } || true mkdir -p /accts/mlweber1/instance-3/output/target/etc ( \ echo "NAME=Buildroot"; \ echo "VERSION=2018.02-git-00953-g3d1a7a8"; \ echo "ID=buildroot"; \ echo "VERSION_ID=2018.02-git"; \ echo "PRETTY_NAME=\"Buildroot 2018.02-git\"" \ ) > /accts/mlweber1/instance-3/output/target/usr/lib/os-release ln -sf ../usr/lib/os-release /accts/mlweber1/instance-3/output/target/etc >>> Sanitizing RPATH in target tree /accts/mlweber1/instance-3/buildroot/support/scripts/fix-rpath target make: Leaving directory `/accts/mlweber1/instance-3/buildroot' make: Entering directory `/accts/mlweber1/instance-3/buildroot' >>> Buildroot 2018.02-git-00953-g3d1a7a8 Collecting legal info COPYING: OK (sha256: 9755181e27175cb3510b4da8629caa406fb355a19aa8e7d55f06bf8ab33323c4) >>> toolchain-external Collecting legal info >>> skeleton Collecting legal info >>> skeleton-init-sysv Collecting legal info >>> skeleton-init-common Collecting legal info >>> toolchain-external-custom Collecting legal info >>> toolchain Collecting legal info >>> aumix 2.9.1 Collecting legal info ERROR: No hash found for COPYING >>> host-autoconf 2.69 Collecting legal info ERROR: No hash found for COPYINGv3 ERROR: No hash found for COPYING.EXCEPTION >>> host-libtool 2.4.6 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> host-m4 1.4.18 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-automake 1.15.1 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> host-gettext 0.19.8.1 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) ERROR: No hash found for gettext-runtime/intl/COPYING.LIB >>> host-libxml2 2.9.7 Collecting legal info COPYING: OK (sha256: c5c63674f8a83c4d2e385d96d1c670a03cb871ba2927755467017317878574bd) >>> host-pkgconf 0.9.12 Collecting legal info ERROR: No hash found for COPYING >>> ncurses 6.0 Collecting legal info ERROR: No hash found for README >>> host-ncurses 6.0 Collecting legal info ERROR: No hash found for README >>> bcg729 1.0.4 Collecting legal info COPYING: OK (sha256: 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670) >>> host-cmake 3.8.2 Collecting legal info ERROR: No hash found for Copyright.txt >>> busybox 1.27.2 Collecting legal info LICENSE: OK (sha256: bbfc9843646d483c334664f651c208b9839626891d8f17604db2146962f43548) >>> ccid 1.4.27 Collecting legal info ERROR: No hash found for COPYING >>> libusb 1.0.21 Collecting legal info ERROR: No hash found for COPYING >>> pcsc-lite 1.8.22 Collecting legal info ERROR: No hash found for COPYING >>> comix-cursors 0.8.2 Collecting legal info >>> gmp 6.1.2 Collecting legal info ERROR: No hash found for COPYING.LESSERv3 ERROR: No hash found for COPYINGv2 >>> initscripts Collecting legal info >>> libite v1.9.2 Collecting legal info LICENSE: OK (sha256: 0e97ab27b60e20a7ddb8e9638189ad159124e51d2c12e12735b05423df224da5) chomp.c: OK (sha256: 9e0fb98d251dddf5ba81a355f6b4d89835ec53bc5d7f5fcd2c866b54ec5ccec8) pidfile.c: OK (sha256: a7d29c148e057fae11a87febc3a51970a26433c35a08fc710be689394442d32d) >>> libnfnetlink 1.0.1 Collecting legal info ERROR: No hash found for COPYING >>> libphidget 2.1.8.20140319 Collecting legal info ERROR: No hash found for COPYING >>> libuv v1.19.1 Collecting legal info LICENSE: OK (sha256: 6d20216ae022fbeed23916f48508fd807ece3d8464992330643b0e64e5c0c24b) >>> minissdpd 1.5 Collecting legal info LICENSE: OK (sha256: c432d6ee83deb6a0c105a2c3ebd11e3855ab91498b0847a8657e68ce8e4491a5) >>> netplug 1.2.9.2 Collecting legal info ERROR: No hash found for COPYING >>> nettle 3.4 Collecting legal info COPYING.LESSERv3: OK (sha256: a853c2ffec17057872340eee242ae4d96cbf2b520ae27d903e1b2fef1a5f9d1c) COPYINGv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> host-patchelf 0.9 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> perl-encode-locale 1.05 Collecting legal info ERROR: No hash found for README >>> host-perl 5.26.1 Collecting legal info ERROR: No hash found for Artistic ERROR: No hash found for Copying ERROR: No hash found for README >>> perl 5.26.1 Collecting legal info ERROR: No hash found for Artistic ERROR: No hash found for Copying ERROR: No hash found for README >>> perl-http-daemon 6.01 Collecting legal info ERROR: No hash found for README >>> perl-http-date 6.02 Collecting legal info ERROR: No hash found for README >>> perl-http-message 6.14 Collecting legal info ERROR: No hash found for LICENSE >>> perl-io-html 1.001 Collecting legal info ERROR: No hash found for LICENSE >>> perl-lwp-mediatypes 6.02 Collecting legal info ERROR: No hash found for README >>> perl-uri 1.73 Collecting legal info ERROR: No hash found for LICENSE >>> phidgetwebservice 2.1.8.20140319 Collecting legal info ERROR: No hash found for COPYING >>> szip 2.1 Collecting legal info ERROR: No hash found for COPYING >>> zd1211-firmware 1.4 Collecting legal info ERROR: No hash found for COPYING WARNING: the Buildroot source code has not been saved WARNING: toolchain-external-custom: cannot save license (TOOLCHAIN_EXTERNAL_CUSTOM_LICENSE_FILES not defined) WARNING: comix-cursors-0.8.2: cannot save license (COMIX_CURSORS_LICENSE_FILES not defined) Legal info produced in /accts/mlweber1/instance-3/output/legal-info make: Leaving directory `/accts/mlweber1/instance-3/buildroot'