ch = pixel >> 8; ^ burst_szip.c:86:3: 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:15: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = del << 1; ^ burst_szip.c:110:4: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = x; ^ burst_szip.c:115:24: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = ((-del)<<1) - 1; ^ burst_szip.c:117:15: 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:13: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] x = uni() * 6; ^ burst_szip.c:160:20: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = uni() * (max+1); ^ burst_szip.c:161:6: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^ burst_szip.c:167:19: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = uni() * (max+1); ^ burst_szip.c:168:19: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] delta = uni() * 32; ^ burst_szip.c:183:18: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = low + uni() * delta; ^ burst_szip.c:184:6: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^ burst_szip.c:190:19: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = uni() * (max+1); ^ burst_szip.c:191:25: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] delta = uni() * 128 + 1; ^ burst_szip.c:206:16: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] x = uni() * delta; ^ burst_szip.c:213:6: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^ burst_szip.c:219:19: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = uni() * (max+1); ^ burst_szip.c:221:6: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^ burst_szip.c:226:48: 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:29: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] blocks = uni() * blocks + 1; ^ burst_szip.c:228:19: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = uni() * (max+1); ^ burst_szip.c:231:7: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^ burst_szip.c:237:19: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = uni() * (max+1); ^ burst_szip.c:238:23: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] delta = uni() * 8 + 1; ^ burst_szip.c:253:16: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] x = uni() * delta; ^ burst_szip.c:260:6: 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:3: warning: conversion to 'float' from 'double' may alter its value [-Wconversion] scanline[i] = y; ^ burst_szip.c:307:2: warning: conversion to 'size_t' 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:2: warning: conversion to 'size_t' 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) ^ example.c:29:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] read_image(file_name) ^ example.c: In function 'read_image': example.c:45:12: warning: conversion to 'int' from 'size_t' may alter its value [-Wconversion] n = fread(image_in+size, 1, 16*1024, fp); ^ example.c: In function 'test_encoding': example.c:84:2: warning: conversion to 'int' from 'long int' may alter its value [-Wconversion] len = size; ^ example.c:99:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] while (c_stream.total_in < len) ^ example.c:101:3: 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:4: 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:28: 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:3: 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:3: 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:4: 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:29: 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:3: 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:2: warning: conversion to 'size_t' from 'long int' may change the sign of the result [-Wsign-conversion] compr = (char *) calloc(comprLen, 1); ^ example.c:275:2: warning: conversion to 'size_t' from 'long int' may change the sign of the result [-Wsign-conversion] uncompr = (char *) calloc(uncomprLen, 1); ^ example.c:306:26: warning: conversion to 'size_t' 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:3: warning: conversion to 'long int' from 'size_t' 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:23: warning: conversion to 'size_t' 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:3: warning: conversion to 'size_t' from 'long int' may change the sign of the result [-Wsign-conversion] rv = memcmp(image_in, image_in2, image_size); ^ example.c:327:3: warning: conversion to 'size_t' 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:3: warning: conversion to 'size_t' from 'long int' may change the sign of the result [-Wsign-conversion] rv = memcmp(image_in, image_in2, image_size); ^ burst_szip.c: In function 'main': burst_szip.c:450:30: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] width = uni() * (width-1) + 1; ^ example.c:307:23: 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 /home/buildroot/autobuild/run/instance-2/output/host/bin/mips64el-ctng_n64-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -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 /home/buildroot/autobuild/run/instance-2/output/host/bin/mips64el-ctng_n64-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -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 /home/buildroot/autobuild/run/instance-2/output/host/bin/mips64el-ctng_n64-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -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,/home/buildroot/autobuild/run/instance-2/output/build/szip-2.1/src/.libs /home/buildroot/autobuild/run/instance-2/output/host/bin/mips64el-ctng_n64-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -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,/home/buildroot/autobuild/run/instance-2/output/build/szip-2.1/src/.libs make[3]: Nothing to be done for `all-am'. >>> szip 2.1 Installing to staging directory PATH="/home/buildroot/autobuild/run/instance-2/output/host/bin:/home/buildroot/autobuild/run/instance-2/output/host/sbin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games" /usr/bin/make -j4 DESTDIR=/home/buildroot/autobuild/run/instance-2/output/host/mips64el-buildroot-linux-gnu/sysroot install -C /home/buildroot/autobuild/run/instance-2/output/build/szip-2.1/ Making install in src test -z "/usr/lib" || /bin/mkdir -p "/home/buildroot/autobuild/run/instance-2/output/host/mips64el-buildroot-linux-gnu/sysroot/usr/lib" test -z "/usr/include" || /bin/mkdir -p "/home/buildroot/autobuild/run/instance-2/output/host/mips64el-buildroot-linux-gnu/sysroot/usr/include" /bin/sh ../libtool --mode=install /usr/bin/install -c 'libsz.la' '/home/buildroot/autobuild/run/instance-2/output/host/mips64el-buildroot-linux-gnu/sysroot/usr/lib/libsz.la' /usr/bin/install -c -m 644 'ricehdf.h' '/home/buildroot/autobuild/run/instance-2/output/host/mips64el-buildroot-linux-gnu/sysroot/usr/include/ricehdf.h' /usr/bin/install -c -m 644 'szip_adpt.h' '/home/buildroot/autobuild/run/instance-2/output/host/mips64el-buildroot-linux-gnu/sysroot/usr/include/szip_adpt.h' /usr/bin/install -c -m 644 'szlib.h' '/home/buildroot/autobuild/run/instance-2/output/host/mips64el-buildroot-linux-gnu/sysroot/usr/include/szlib.h' /usr/bin/install -c .libs/libsz.so.2.0.0 /home/buildroot/autobuild/run/instance-2/output/host/mips64el-buildroot-linux-gnu/sysroot/usr/lib/libsz.so.2.0.0 (cd /home/buildroot/autobuild/run/instance-2/output/host/mips64el-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 /home/buildroot/autobuild/run/instance-2/output/host/mips64el-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 /home/buildroot/autobuild/run/instance-2/output/host/mips64el-buildroot-linux-gnu/sysroot/usr/lib/libsz.la libtool: install: warning: remember to run `libtool --finish /usr/lib' Making install in test make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. Making install in examples make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. >>> szip 2.1 Fixing libtool files >>> szip 2.1 Installing to target PATH="/home/buildroot/autobuild/run/instance-2/output/host/bin:/home/buildroot/autobuild/run/instance-2/output/host/sbin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games" /usr/bin/make -j4 DESTDIR=/home/buildroot/autobuild/run/instance-2/output/target install -C /home/buildroot/autobuild/run/instance-2/output/build/szip-2.1/ Making install in src test -z "/usr/lib" || /bin/mkdir -p "/home/buildroot/autobuild/run/instance-2/output/target/usr/lib" test -z "/usr/include" || /bin/mkdir -p "/home/buildroot/autobuild/run/instance-2/output/target/usr/include" /bin/sh ../libtool --mode=install /usr/bin/install -c 'libsz.la' '/home/buildroot/autobuild/run/instance-2/output/target/usr/lib/libsz.la' /usr/bin/install -c -m 644 'ricehdf.h' '/home/buildroot/autobuild/run/instance-2/output/target/usr/include/ricehdf.h' /usr/bin/install -c -m 644 'szip_adpt.h' '/home/buildroot/autobuild/run/instance-2/output/target/usr/include/szip_adpt.h' /usr/bin/install -c -m 644 'szlib.h' '/home/buildroot/autobuild/run/instance-2/output/target/usr/include/szlib.h' /usr/bin/install -c .libs/libsz.so.2.0.0 /home/buildroot/autobuild/run/instance-2/output/target/usr/lib/libsz.so.2.0.0 (cd /home/buildroot/autobuild/run/instance-2/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 /home/buildroot/autobuild/run/instance-2/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 /home/buildroot/autobuild/run/instance-2/output/target/usr/lib/libsz.la libtool: install: warning: remember to run `libtool --finish /usr/lib' Making install in test make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. Making install in examples make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. >>> Finalizing target directory # Check files that are touched by more than one package ./support/scripts/check-uniq-files -t target /home/buildroot/autobuild/run/instance-2/output/build/packages-file-list.txt ./support/scripts/check-uniq-files -t staging /home/buildroot/autobuild/run/instance-2/output/build/packages-file-list-staging.txt ./support/scripts/check-uniq-files -t host /home/buildroot/autobuild/run/instance-2/output/build/packages-file-list-host.txt rm -f /home/buildroot/autobuild/run/instance-2/output/target/usr/share/glib-2.0/schemas/*.xml /home/buildroot/autobuild/run/instance-2/output/target/usr/share/glib-2.0/schemas/*.dtd /home/buildroot/autobuild/run/instance-2/output/host/bin/glib-compile-schemas /home/buildroot/autobuild/run/instance-2/output/host/mips64el-buildroot-linux-gnu/sysroot/usr/share/glib-2.0/schemas --targetdir=/home/buildroot/autobuild/run/instance-2/output/target/usr/share/glib-2.0/schemas No schema files found: doing nothing. mkdir -p /home/buildroot/autobuild/run/instance-2/output/target/etc echo "buildroot" > /home/buildroot/autobuild/run/instance-2/output/target/etc/hostname /bin/sed -i -e '$a \127.0.1.1\tbuildroot' -e '/^127.0.1.1/d' /home/buildroot/autobuild/run/instance-2/output/target/etc/hosts mkdir -p /home/buildroot/autobuild/run/instance-2/output/target/etc echo "Welcome to Buildroot" > /home/buildroot/autobuild/run/instance-2/output/target/etc/issue /bin/sed -i -e s,^root:[^:]*:,root::, /home/buildroot/autobuild/run/instance-2/output/target/etc/shadow rm -f /home/buildroot/autobuild/run/instance-2/output/target/bin/sh rm -f /home/buildroot/autobuild/run/instance-2/output/build/locales.nopurge for i in C en_US locale-archive; do echo $i >> /home/buildroot/autobuild/run/instance-2/output/build/locales.nopurge; done for dir in /home/buildroot/autobuild/run/instance-2/output/target/usr/share/locale; do for langdir in $dir/*; do if [ -e "${langdir}" ]; then grep -qx "${langdir##*/}" /home/buildroot/autobuild/run/instance-2/output/build/locales.nopurge || rm -rf $langdir; fi done; done if [ -d /home/buildroot/autobuild/run/instance-2/output/target/usr/share/X11/locale ]; then for lang in C en_US; do if [ -f /home/buildroot/autobuild/run/instance-2/output/target/usr/share/X11/locale/$lang/XLC_LOCALE ]; then echo "$lang/XLC_LOCALE: $lang"; fi done > /home/buildroot/autobuild/run/instance-2/output/target/usr/share/X11/locale/locale.dir; fi rm -rf /home/buildroot/autobuild/run/instance-2/output/target/usr/include /home/buildroot/autobuild/run/instance-2/output/target/usr/share/aclocal \ /home/buildroot/autobuild/run/instance-2/output/target/usr/lib/pkgconfig /home/buildroot/autobuild/run/instance-2/output/target/usr/share/pkgconfig \ /home/buildroot/autobuild/run/instance-2/output/target/usr/lib/cmake /home/buildroot/autobuild/run/instance-2/output/target/usr/share/cmake find /home/buildroot/autobuild/run/instance-2/output/target/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f find /home/buildroot/autobuild/run/instance-2/output/target/lib/ /home/buildroot/autobuild/run/instance-2/output/target/usr/lib/ /home/buildroot/autobuild/run/instance-2/output/target/usr/libexec/ \ \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f rm -rf /home/buildroot/autobuild/run/instance-2/output/target/usr/share/gdb rm -rf /home/buildroot/autobuild/run/instance-2/output/target/usr/share/bash-completion rm -rf /home/buildroot/autobuild/run/instance-2/output/target/usr/share/zsh rm -rf /home/buildroot/autobuild/run/instance-2/output/target/usr/man /home/buildroot/autobuild/run/instance-2/output/target/usr/share/man rm -rf /home/buildroot/autobuild/run/instance-2/output/target/usr/info /home/buildroot/autobuild/run/instance-2/output/target/usr/share/info rm -rf /home/buildroot/autobuild/run/instance-2/output/target/usr/doc /home/buildroot/autobuild/run/instance-2/output/target/usr/share/doc rm -rf /home/buildroot/autobuild/run/instance-2/output/target/usr/share/gtk-doc rmdir /home/buildroot/autobuild/run/instance-2/output/target/usr/share 2>/dev/null || true find /home/buildroot/autobuild/run/instance-2/output/target -type f \( -perm /111 -o -name '*.so*' \) -not \( -name 'libpthread*.so*' -o -name 'ld-*.so*' -o -name '*.ko' \) -print0 | xargs -0 /home/buildroot/autobuild/run/instance-2/output/host/bin/mips64el-ctng_n64-linux-gnu-strip --remove-section=.comment --remove-section=.note 2>/dev/null || true find /home/buildroot/autobuild/run/instance-2/output/target/lib/ -type f -name 'libpthread*.so*' | \ xargs -r /home/buildroot/autobuild/run/instance-2/output/host/bin/mips64el-ctng_n64-linux-gnu-strip --remove-section=.comment --remove-section=.note --strip-debug find /home/buildroot/autobuild/run/instance-2/output/target/lib/ -type f -name 'ld-*.so*' | \ xargs -r /home/buildroot/autobuild/run/instance-2/output/host/bin/mips64el-ctng_n64-linux-gnu-strip --remove-section=.comment --remove-section=.note --strip-debug test -f /home/buildroot/autobuild/run/instance-2/output/target/etc/ld.so.conf && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true test -d /home/buildroot/autobuild/run/instance-2/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 /home/buildroot/autobuild/run/instance-2/output/target/etc ( \ echo "NAME=Buildroot"; \ echo "VERSION=2018.02-git-00417-ga957d9a"; \ echo "ID=buildroot"; \ echo "VERSION_ID=2018.02-git"; \ echo "PRETTY_NAME=\"Buildroot 2018.02-git\"" \ ) > /home/buildroot/autobuild/run/instance-2/output/target/etc/os-release >>> Sanitizing RPATH in target tree /home/buildroot/autobuild/run/instance-2/buildroot/support/scripts/fix-rpath target make: Leaving directory `/home/buildroot/autobuild/run/instance-2/buildroot' make: Entering directory `/home/buildroot/autobuild/run/instance-2/buildroot' >>> Buildroot 2018.02-git-00417-ga957d9a Collecting legal info COPYING: OK (sha256: 9755181e27175cb3510b4da8629caa406fb355a19aa8e7d55f06bf8ab33323c4) >>> host-lzip 1.19 Collecting legal info ERROR: No hash found for COPYING >>> toolchain-external Collecting legal info >>> skeleton Collecting legal info >>> skeleton-init-none Collecting legal info >>> skeleton-init-common Collecting legal info >>> toolchain-external-custom Collecting legal info >>> toolchain Collecting legal info >>> bluez_utils 4.101 Collecting legal info COPYING: OK (sha256: b499eddebda05a8859e32b820a64577d91f1de2b52efa2a1575a2cb4000bc259) COPYING.LIB: OK (sha256: ec60b993835e2c6b79e6d9226345f4e614e686eb57dc13b6420c15a33a8996e5) >>> check 0.11.0 Collecting legal info COPYING.LESSER: OK (sha256: a9bdde5616ecdd1e980b44f360600ee8783b1f99b8cc83a2beb163a0a390e861) >>> host-pkgconf 0.9.12 Collecting legal info ERROR: No hash found for COPYING >>> dbus 1.12.2 Collecting legal info COPYING: OK (sha256: 0e46f54efb12d04ab5c33713bacd0e140c9a35b57ae29e03c853203266e8f3a1) >>> expat 2.2.5 Collecting legal info COPYING: OK (sha256: 46336ab2fec900803e2f1a4253e325ac01d998efb09bc6906651f7259e636f76) >>> 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) >>> libglib2 2.54.2 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-libglib2 2.54.2 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> 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-libffi 3.2.1 Collecting legal info LICENSE: OK (sha256: 0f4d7a0bfb83c37465d42dc305f124189196cc0cc2cc8d6f8461103682aebbc5) >>> host-pcre 8.41 Collecting legal info LICENCE: OK (sha256: 9ac4dfc82b2645ff77b56b759f95f28aa15ab15a03670fa6d4313a6b351e60f0) >>> host-util-linux 2.31 Collecting legal info README.licensing: OK (sha256: 1e4b65802b0df8115395c697029d03339f983d451a473a08643309c684410d9a) Documentation/licenses/COPYING.GPLv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) Documentation/licenses/COPYING.UCB: OK (sha256: ba7640f00d93e72e92b94b9d71f25ec53bac2f1682f5c4adcccb0018359f60f8) Documentation/licenses/COPYING.LGPLv2.1: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) Documentation/licenses/COPYING.BSD-3: OK (sha256: 9b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6d) sys-utils/rfkill.c: OK (sha256: 996126b78a42dd2eeea1256d78b7fd6dec090ea196365c0ccb46adc32bc92460) >>> host-zlib 1.2.11 Collecting legal info README: OK (sha256: 7960b6b1cc63e619abb77acaea5427159605afee8c8b362664f4effc7d7f7d15) >>> libffi 3.2.1 Collecting legal info LICENSE: OK (sha256: 0f4d7a0bfb83c37465d42dc305f124189196cc0cc2cc8d6f8461103682aebbc5) >>> pcre 8.41 Collecting legal info LICENCE: OK (sha256: 9ac4dfc82b2645ff77b56b759f95f28aa15ab15a03670fa6d4313a6b351e60f0) >>> util-linux 2.31 Collecting legal info README.licensing: OK (sha256: 1e4b65802b0df8115395c697029d03339f983d451a473a08643309c684410d9a) Documentation/licenses/COPYING.GPLv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) Documentation/licenses/COPYING.UCB: OK (sha256: ba7640f00d93e72e92b94b9d71f25ec53bac2f1682f5c4adcccb0018359f60f8) Documentation/licenses/COPYING.LGPLv2.1: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) Documentation/licenses/COPYING.BSD-3: OK (sha256: 9b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6d) sys-utils/rfkill.c: OK (sha256: 996126b78a42dd2eeea1256d78b7fd6dec090ea196365c0ccb46adc32bc92460) >>> 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 >>> readline 7.0 Collecting legal info ERROR: No hash found for COPYING >>> zlib 1.2.11 Collecting legal info README: OK (sha256: 7960b6b1cc63e619abb77acaea5427159605afee8c8b362664f4effc7d7f7d15) >>> cgroupfs-mount 1.4 Collecting legal info ERROR: No hash found for debian/copyright >>> dcron 4.5 Collecting legal info >>> debianutils 4.8.1 Collecting legal info ERROR: No hash found for debian/copyright >>> diffutils 3.6 Collecting legal info ERROR: No hash found for COPYING >>> drbd-utils 8.9.6 Collecting legal info ERROR: No hash found for COPYING >>> host-flex 2.6.4 Collecting legal info COPYING: OK (sha256: 97fd685958d93be7f8dab939bb8161dbd6afb0718c63bfc337c24321aea44273) >>> fmtools 2.0.7 Collecting legal info ERROR: No hash found for COPYING >>> freetype 2.8.1 Collecting legal info docs/LICENSE.TXT: OK (sha256: fd056de4196903a676208ef58cfddafc7d583d1f28fa2e44c309cf84a59e62fb) docs/FTL.TXT: OK (sha256: 4a9a548027a2c1d37788519dea833294c9c81f1ebc280e817f41f50d0c642d78) docs/GPLv2.TXT: OK (sha256: c4120c6752c910c299e3bd9cb3a46ff262c268303ca2069b61f92f10a5656c18) >>> genext2fs 1.4.1 Collecting legal info ERROR: No hash found for COPYING >>> libao 1.2.0 Collecting legal info ERROR: No hash found for COPYING >>> libass 0.13.7 Collecting legal info ERROR: No hash found for COPYING >>> libfribidi 0.19.7 Collecting legal info ERROR: No hash found for COPYING >>> libdrm 2.4.89 Collecting legal info >>> libpthread-stubs 0.4 Collecting legal info ERROR: No hash found for COPYING >>> libdvbpsi 1.3.0 Collecting legal info ERROR: No hash found for COPYING >>> libeXosip2 3.6.0 Collecting legal info ERROR: No hash found for COPYING >>> libosip2 3.6.0 Collecting legal info ERROR: No hash found for COPYING >>> libebml 1.3.3 Collecting legal info ERROR: No hash found for LICENSE.LGPL >>> libevent 2.1.8-stable Collecting legal info ERROR: No hash found for LICENSE >>> libiio 0.10 Collecting legal info ERROR: No hash found for COPYING.txt >>> host-cmake 3.8.2 Collecting legal info ERROR: No hash found for Copyright.txt >>> libmatroska 1.4.4 Collecting legal info ERROR: No hash found for LICENSE.LGPL >>> libnice 0.1.13 Collecting legal info ERROR: No hash found for COPYING ERROR: No hash found for COPYING.MPL ERROR: No hash found for COPYING.LGPL >>> libogg 1.3.3 Collecting legal info ERROR: No hash found for COPYING >>> libopenh264 v1.6.0 Collecting legal info ERROR: No hash found for LICENSE >>> libplist 2.0.0 Collecting legal info ERROR: No hash found for COPYING >>> libsecret 0.18.5 Collecting legal info ERROR: No hash found for COPYING >>> host-intltool 0.51.0 Collecting legal info ERROR: No hash found for COPYING >>> host-libxml-parser-perl 2.44 Collecting legal info ERROR: No hash found for README >>> host-expat 2.2.5 Collecting legal info COPYING: OK (sha256: 46336ab2fec900803e2f1a4253e325ac01d998efb09bc6906651f7259e636f76) >>> libva-utils 1.8.3 Collecting legal info ERROR: No hash found for COPYING >>> libva 1.8.3 Collecting legal info ERROR: No hash found for COPYING >>> libwebsock 3c1615eeadb0b582b63851073bfe3e5132f31ebc Collecting legal info ERROR: No hash found for COPYING.lesser >>> linphone 3.6.1 Collecting legal info ERROR: No hash found for COPYING >>> speex 1.2rc1 Collecting legal info ERROR: No hash found for COPYING >>> linuxconsoletools 1.6.0 Collecting legal info ERROR: No hash found for COPYING >>> lockdev 1.0.3 Collecting legal info ERROR: No hash found for LICENSE >>> host-patchelf 0.9 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> pps-tools 47333f24af878f67ce48022e8af16419713aa1ac Collecting legal info ERROR: No hash found for COPYING >>> szip 2.1 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: dcron-4.5: cannot save license (DCRON_LICENSE_FILES not defined) WARNING: libdrm-2.4.89: cannot save license (LIBDRM_LICENSE_FILES not defined) Legal info produced in /home/buildroot/autobuild/run/instance-2/output/legal-info make: Leaving directory `/home/buildroot/autobuild/run/instance-2/buildroot'