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) | ^ libtool: compile: /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -DHAVE_CONFIG_H -I. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -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 -c rice.c -o rice.o >/dev/null 2>&1 /bin/bash ../libtool --tag=CC --mode=compile /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -DHAVE_CONFIG_H -I. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -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 -c -o sz_api.lo sz_api.c libtool: compile: /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -DHAVE_CONFIG_H -I. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -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 -c sz_api.c -fPIC -DPIC -o .libs/sz_api.o sz_api.c:47:6: warning: redundant redeclaration of 'szip_compress_memory' [-Wredundant-decls] 47 | long szip_compress_memory( | ^~~~~~~~~~~~~~~~~~~~ In file included from szlib.h:42, from sz_api.c:45: ricehdf.h:62:6: note: previous declaration of 'szip_compress_memory' with type 'long int(int, int, int, int, const void *, long int, char *)' 62 | long szip_compress_memory( | ^~~~~~~~~~~~~~~~~~~~ sz_api.c:56:6: warning: redundant redeclaration of 'szip_uncompress_memory' [-Wredundant-decls] 56 | long szip_uncompress_memory( | ^~~~~~~~~~~~~~~~~~~~~~ In file included from szlib.h:42, from sz_api.c:45: ricehdf.h:71:6: note: previous declaration of 'szip_uncompress_memory' with type 'long int(int, int, int, int, const char *, long int, void *, long int)' 71 | long szip_uncompress_memory( | ^~~~~~~~~~~~~~~~~~~~~~ sz_api.c:66:5: warning: redundant redeclaration of 'szip_check_params' [-Wredundant-decls] 66 | int szip_check_params( | ^~~~~~~~~~~~~~~~~ In file included from szlib.h:42, from sz_api.c:45: ricehdf.h:81:5: note: previous declaration of 'szip_check_params' with type 'int(int, int, int, long int, char **)' 81 | int szip_check_params( | ^~~~~~~~~~~~~~~~~ sz_api.c: In function 'SZ_Compress': sz_api.c:124:44: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 124 | hidden->image_in = (char *) malloc(image_size); | ^~~~~~~~~~ sz_api.c:131:66: warning: conversion from 'long int' to 'double' may change value [-Wconversion] 131 | image_size = (long)(strm->image_pixels * bytes_per_pixel * 1.75); | ^ sz_api.c:132:45: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 132 | hidden->image_out = (char *) malloc(image_size); | ^~~~~~~~~~ sz_api.c:141:48: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 141 | memcpy(hidden->next_in, strm->next_in, size_in); | ^~~~~~~ sz_api.c:146:27: warning: conversion from 'long int' to 'unsigned int' may change value [-Wconversion] 146 | strm->avail_in -= size_in; | ^~~~~~~ sz_api.c:147:24: warning: conversion to 'long unsigned int' from 'long int' may change the sign of the result [-Wsign-conversion] 147 | strm->total_in += size_in; | ^~ sz_api.c:154:24: warning: conversion from 'long int' to 'int' may change value [-Wconversion] 154 | return output_bytes; | ^~~~~~~~~~~~ sz_api.c:169:50: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 169 | memcpy(strm->next_out, hidden->next_out, size_out); | ^~~~~~~~ sz_api.c:174:28: warning: conversion from 'long int' to 'unsigned int' may change value [-Wconversion] 174 | strm->avail_out -= size_out; | ^~~~~~~~ sz_api.c:175:25: warning: conversion to 'long unsigned int' from 'long int' may change the sign of the result [-Wsign-conversion] 175 | strm->total_out += size_out; | ^~ sz_api.c: In function 'SZ_Decompress': sz_api.c:270:66: warning: conversion from 'long int' to 'double' may change value [-Wconversion] 270 | image_size = (long)(strm->image_pixels * bytes_per_pixel * 1.75); | ^ sz_api.c:271:44: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 271 | hidden->image_in = (char *) malloc(image_size); | ^~~~~~~~~~ sz_api.c:278:66: warning: conversion from 'long int' to 'double' may change value [-Wconversion] 278 | image_size = (long)(strm->image_pixels * bytes_per_pixel * 1.0); | ^ sz_api.c:279:45: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 279 | hidden->image_out = (char *) malloc(image_size); | ^~~~~~~~~~ sz_api.c:288:48: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 288 | memcpy(hidden->next_in, strm->next_in, size_in); | ^~~~~~~ sz_api.c:293:27: warning: conversion from 'long int' to 'unsigned int' may change value [-Wconversion] 293 | strm->avail_in -= size_in; | ^~~~~~~ sz_api.c:294:24: warning: conversion to 'long unsigned int' from 'long int' may change the sign of the result [-Wsign-conversion] 294 | strm->total_in += size_in; | ^~ sz_api.c:302:24: warning: conversion from 'long int' to 'int' may change value [-Wconversion] 302 | return output_bytes; | ^~~~~~~~~~~~ sz_api.c:313:50: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 313 | memcpy(strm->next_out, hidden->next_out, size_out); | ^~~~~~~~ sz_api.c:318:28: warning: conversion from 'long int' to 'unsigned int' may change value [-Wconversion] 318 | strm->avail_out -= size_out; | ^~~~~~~~ sz_api.c:319:25: warning: conversion to 'long unsigned int' from 'long int' may change the sign of the result [-Wsign-conversion] 319 | strm->total_out += size_out; | ^~ sz_api.c: In function 'SZ_BufftoBuffCompress': sz_api.c:396:24: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] 396 | pixels = (sourceLen+bytes_per_pixel-1)/bytes_per_pixel; | ^ sz_api.c:396:43: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] 396 | pixels = (sourceLen+bytes_per_pixel-1)/bytes_per_pixel; | ^ sz_api.c:396:14: warning: conversion to 'long int' from 'size_t' {aka 'long unsigned int'} may change the sign of the result [-Wsign-conversion] 396 | pixels = (sourceLen+bytes_per_pixel-1)/bytes_per_pixel; | ^ sz_api.c:397:33: warning: conversion from 'size_t' {aka 'long unsigned int'} to 'double' may change value [-Wconversion] 397 | out_size = (long)(sourceLen * 2.00); | ^ sz_api.c:399:18: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'long int' [-Wsign-compare] 399 | if (*destLen >= out_size) | ^~ sz_api.c:403:37: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 403 | image_out = (char *) malloc(out_size); | ^~~~~~~~ sz_api.c:414:16: warning: conversion from 'long int' to 'int' may change value [-Wconversion] 414 | return output_bytes; | ^~~~~~~~~~~~ sz_api.c:418:18: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'long int' [-Wsign-compare] 418 | if (*destLen >= output_bytes) | ^~ sz_api.c:419:20: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 419 | *destLen = output_bytes; | ^~~~~~~~~~~~ sz_api.c: In function 'SZ_BufftoBuffDecompress': sz_api.c:454:22: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] 454 | pixels = *destLen/bytes_per_pixel; | ^ sz_api.c:454:14: warning: conversion to 'long int' from 'size_t' {aka 'long unsigned int'} may change the sign of the result [-Wsign-conversion] 454 | pixels = *destLen/bytes_per_pixel; | ^ sz_api.c:456:136: warning: conversion to 'long int' from 'size_t' {aka 'long unsigned int'} may change the sign of the result [-Wsign-conversion] 456 | output_bytes = szip_uncompress_memory(sz->options_mask, sz->bits_per_pixel, sz->pixels_per_block, sz->pixels_per_scanline, source, sourceLen, dest, pixels); | ^~~~~~~~~ sz_api.c:458:16: warning: conversion from 'long int' to 'int' may change value [-Wconversion] 458 | return output_bytes; | ^~~~~~~~~~~~ sz_api.c:464:20: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 464 | *destLen = output_bytes; | ^~~~~~~~~~~~ libtool: compile: /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -DHAVE_CONFIG_H -I. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -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 -c sz_api.c -o sz_api.o >/dev/null 2>&1 /bin/bash ../libtool --tag=CC --mode=compile /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -DHAVE_CONFIG_H -I. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -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 -c -o encoding.lo encoding.c libtool: compile: /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -DHAVE_CONFIG_H -I. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -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 -c encoding.c -fPIC -DPIC -o .libs/encoding.o encoding.c:16:30: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 16 | char * szip_encoder_status = "SZIP ENCODER ENABLED"; | ^~~~~~~~~~~~~~~~~~~~~~ libtool: compile: /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -DHAVE_CONFIG_H -I. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -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 -c encoding.c -o encoding.o >/dev/null 2>&1 /bin/bash ../libtool --tag=CC --mode=link /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -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: /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -shared -fPIC -DPIC .libs/rice.o .libs/sz_api.o .libs/encoding.o -lm -O3 -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: /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc-ar cru .libs/libsz.a rice.o sz_api.o encoding.o libtool: link: /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc-ranlib .libs/libsz.a libtool: link: ( cd ".libs" && rm -f "libsz.la" && ln -s "../libsz.la" "libsz.la" ) make[3]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1/src' make[2]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1/src' Making all in test make[2]: Entering directory '/tmp/instance-18/output-1/build/szip-2.1.1/test' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1/test' make[2]: Entering directory '/tmp/instance-18/output-1/build/szip-2.1.1' make[2]: Nothing to be done for 'all-am'. make[2]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1' make[1]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1' >>> szip 2.1.1 Installing to staging directory PATH="/tmp/instance-18/output-1/host/bin:/tmp/instance-18/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" /home/autobuild/make/make -j1 DESTDIR=/tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot install -C /tmp/instance-18/output-1/build/szip-2.1.1/ make[1]: Entering directory '/tmp/instance-18/output-1/build/szip-2.1.1' Making install in src make[2]: Entering directory '/tmp/instance-18/output-1/build/szip-2.1.1/src' make[3]: Entering directory '/tmp/instance-18/output-1/build/szip-2.1.1/src' /usr/bin/mkdir -p '/tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot/usr/lib' /bin/bash ../libtool --mode=install /usr/bin/install -c libsz.la '/tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot/usr/lib' libtool: install: /usr/bin/install -c .libs/libsz.so.2.0.0 /tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot/usr/lib/libsz.so.2.0.0 libtool: install: (cd /tmp/instance-18/output-1/host/powerpc64-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 /tmp/instance-18/output-1/host/powerpc64-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 /tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot/usr/lib/libsz.la libtool: install: /usr/bin/install -c .libs/libsz.a /tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot/usr/lib/libsz.a libtool: install: chmod 644 /tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot/usr/lib/libsz.a libtool: install: /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc-ranlib /tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot/usr/lib/libsz.a libtool: warning: remember to run 'libtool --finish /usr/lib' /usr/bin/mkdir -p '/tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot/usr/include' /usr/bin/install -c -m 644 ricehdf.h szip_adpt.h szlib.h '/tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot/usr/include' make[3]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1/src' make[2]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1/src' Making install in test make[2]: Entering directory '/tmp/instance-18/output-1/build/szip-2.1.1/test' make[3]: Entering directory '/tmp/instance-18/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 '/tmp/instance-18/output-1/build/szip-2.1.1/test' make[2]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1/test' make[2]: Entering directory '/tmp/instance-18/output-1/build/szip-2.1.1' make[3]: Entering directory '/tmp/instance-18/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 '/tmp/instance-18/output-1/build/szip-2.1.1' make[2]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1' make[1]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1' >>> szip 2.1.1 Fixing libtool files for la in $(find /tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot/usr/lib* -name "*.la"); do \ cp -a "${la}" "${la}.fixed" && \ /usr/bin/sed -i -e "s:/tmp/instance-18/output-1:@BASE_DIR@:g" \ -e "s:/tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot:@STAGING_DIR@:g" \ \ -e "s:\(['= ]\)/usr:\\1@STAGING_DIR@/usr:g" \ -e "s:\(['= ]\)/lib:\\1@STAGING_DIR@/lib:g" \ \ -e "s:@STAGING_DIR@:/tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot:g" \ -e "s:@BASE_DIR@:/tmp/instance-18/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="/tmp/instance-18/output-1/host/bin:/tmp/instance-18/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" /home/autobuild/make/make -j1 DESTDIR=/tmp/instance-18/output-1/target install -C /tmp/instance-18/output-1/build/szip-2.1.1/ make[1]: Entering directory '/tmp/instance-18/output-1/build/szip-2.1.1' Making install in src make[2]: Entering directory '/tmp/instance-18/output-1/build/szip-2.1.1/src' make[3]: Entering directory '/tmp/instance-18/output-1/build/szip-2.1.1/src' /usr/bin/mkdir -p '/tmp/instance-18/output-1/target/usr/lib' /bin/bash ../libtool --mode=install /usr/bin/install -c libsz.la '/tmp/instance-18/output-1/target/usr/lib' libtool: install: /usr/bin/install -c .libs/libsz.so.2.0.0 /tmp/instance-18/output-1/target/usr/lib/libsz.so.2.0.0 libtool: install: (cd /tmp/instance-18/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 /tmp/instance-18/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 /tmp/instance-18/output-1/target/usr/lib/libsz.la libtool: install: /usr/bin/install -c .libs/libsz.a /tmp/instance-18/output-1/target/usr/lib/libsz.a libtool: install: chmod 644 /tmp/instance-18/output-1/target/usr/lib/libsz.a libtool: install: /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc-ranlib /tmp/instance-18/output-1/target/usr/lib/libsz.a libtool: warning: remember to run 'libtool --finish /usr/lib' /usr/bin/mkdir -p '/tmp/instance-18/output-1/target/usr/include' /usr/bin/install -c -m 644 ricehdf.h szip_adpt.h szlib.h '/tmp/instance-18/output-1/target/usr/include' make[3]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1/src' make[2]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1/src' Making install in test make[2]: Entering directory '/tmp/instance-18/output-1/build/szip-2.1.1/test' make[3]: Entering directory '/tmp/instance-18/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 '/tmp/instance-18/output-1/build/szip-2.1.1/test' make[2]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1/test' make[2]: Entering directory '/tmp/instance-18/output-1/build/szip-2.1.1' make[3]: Entering directory '/tmp/instance-18/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 '/tmp/instance-18/output-1/build/szip-2.1.1' make[2]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1' make[1]: Leaving directory '/tmp/instance-18/output-1/build/szip-2.1.1' >>> triggerhappy 0.5.0 Downloading wget --passive-ftp -nd -t 3 -O '/tmp/instance-18/output-1/build/.triggerhappy-0.5.0.tar.gz.jqX7h0/output' 'https://github.com/wertarbyte/triggerhappy/archive/release/0.5.0/triggerhappy-0.5.0.tar.gz' --2023-03-20 01:15:25-- https://github.com/wertarbyte/triggerhappy/archive/release/0.5.0/triggerhappy-0.5.0.tar.gz Resolving github.com (github.com)... 140.82.112.4 Connecting to github.com (github.com)|140.82.112.4|:443... connected. HTTP request sent, awaiting response... 302 Found Location: https://codeload.github.com/wertarbyte/triggerhappy/tar.gz/refs/tags/release/0.5.0 [following] --2023-03-20 01:15:25-- https://codeload.github.com/wertarbyte/triggerhappy/tar.gz/refs/tags/release/0.5.0 Resolving codeload.github.com (codeload.github.com)... 140.82.114.9 Connecting to codeload.github.com (codeload.github.com)|140.82.114.9|:443... connected. HTTP request sent, awaiting response... 200 OK Length: unspecified [application/x-gzip] Saving to: '/tmp/instance-18/output-1/build/.triggerhappy-0.5.0.tar.gz.jqX7h0/output' 0K .......... .......... ......... 560K=0.05s 2023-03-20 01:15:26 (560 KB/s) - '/tmp/instance-18/output-1/build/.triggerhappy-0.5.0.tar.gz.jqX7h0/output' saved [29841] triggerhappy-0.5.0.tar.gz: OK (sha256: af0fc196202f2d35153be401769a9ad9107b5b6387146cfa8895ae9cafad631c) >>> triggerhappy 0.5.0 Extracting gzip -d -c /tmp/instance-18/dl/triggerhappy/triggerhappy-0.5.0.tar.gz | tar --strip-components=1 -C /tmp/instance-18/output-1/build/triggerhappy-0.5.0 -xf - >>> triggerhappy 0.5.0 Patching >>> triggerhappy 0.5.0 Configuring >>> triggerhappy 0.5.0 Building /home/autobuild/make/make -j1 PATH="/tmp/instance-18/output-1/host/bin:/tmp/instance-18/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" AR="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc-ar" AS="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-as" LD="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-ld" NM="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc-nm" CC="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc" GCC="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc" CPP="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-cpp" CXX="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-g++" FC="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gfortran" F77="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gfortran" RANLIB="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc-ranlib" READELF="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-readelf" STRIP="/bin/true" OBJCOPY="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-objcopy" OBJDUMP="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-objdump" AR_FOR_BUILD="/usr/bin/ar" AS_FOR_BUILD="/usr/bin/as" CC_FOR_BUILD="/usr/bin/gcc" GCC_FOR_BUILD="/usr/bin/gcc" CXX_FOR_BUILD="/usr/bin/g++" LD_FOR_BUILD="/usr/bin/ld" CPPFLAGS_FOR_BUILD="-I/tmp/instance-18/output-1/host/include" CFLAGS_FOR_BUILD="-O2 -I/tmp/instance-18/output-1/host/include" CXXFLAGS_FOR_BUILD="-O2 -I/tmp/instance-18/output-1/host/include" LDFLAGS_FOR_BUILD="-L/tmp/instance-18/output-1/host/lib -Wl,-rpath,/tmp/instance-18/output-1/host/lib" FCFLAGS_FOR_BUILD="" DEFAULT_ASSEMBLER="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-as" DEFAULT_LINKER="/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-ld" CPPFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64" CFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1" CXXFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1" LDFLAGS="" FCFLAGS=" -O3 -g0" FFLAGS=" -O3 -g0" PKG_CONFIG="/tmp/instance-18/output-1/host/bin/pkg-config" STAGING_DIR="/tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot" INTLTOOL_PERL=/usr/bin/perl CXX=no PKGCONFIG="/tmp/instance-18/output-1/host/bin/pkg-config" -C /tmp/instance-18/output-1/build/triggerhappy-0.5.0 thd th-cmd make[1]: Entering directory '/tmp/instance-18/output-1/build/triggerhappy-0.5.0' /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -M -MG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o thd.d thd.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -M -MG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o keystate.d keystate.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -M -MG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o trigger.d trigger.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -M -MG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o eventnames.d eventnames.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -M -MG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o devices.d devices.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -M -MG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o cmdsocket.d cmdsocket.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -M -MG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o obey.d obey.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -M -MG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o ignore.d ignore.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -M -MG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o uinput.d uinput.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -M -MG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o triggerparser.d triggerparser.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -M -MG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o th-cmd.d th-cmd.c sed -r 's!(.*)!#define TH_VERSION "\1"!' version.inc > version.h /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -c -o thd.o thd.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -c -o keystate.o keystate.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -c -o trigger.o trigger.c trigger.c: In function 'run_triggers': trigger.c:230:41: warning: ignoring return value of 'system' declared with attribute 'warn_unused_result' [-Wunused-result] 230 | system(et->action); | ^~~~~~~~~~~~~~~~~~ echo "#include " | /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -dM -E - > linux_input_defs_gen.inc awk '/^#define EV_/ && $2 !~ /_(MIN_INTERESTING|MAX|CNT|VERSION)$/ {print "EV_MAP("$2"),"}' linux_input_defs_gen.inc > evtable_EV.inc awk '/^#define KEY_/ && $2 !~ /_(MIN_INTERESTING|MAX|CNT|VERSION)$/ {print "EV_MAP("$2"),"}' linux_input_defs_gen.inc > evtable_KEY.inc awk '/^#define BTN_/ && $2 !~ /_(MIN_INTERESTING|MAX|CNT|VERSION)$/ {print "EV_MAP("$2"),"}' linux_input_defs_gen.inc > evtable_BTN.inc awk '/^#define REL_/ && $2 !~ /_(MIN_INTERESTING|MAX|CNT|VERSION)$/ {print "EV_MAP("$2"),"}' linux_input_defs_gen.inc > evtable_REL.inc awk '/^#define ABS_/ && $2 !~ /_(MIN_INTERESTING|MAX|CNT|VERSION)$/ {print "EV_MAP("$2"),"}' linux_input_defs_gen.inc > evtable_ABS.inc awk '/^#define SW_/ && $2 !~ /_(MIN_INTERESTING|MAX|CNT|VERSION)$/ {print "EV_MAP("$2"),"}' linux_input_defs_gen.inc > evtable_SW.inc /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -c -o eventnames.o eventnames.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -c -o devices.o devices.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -c -o cmdsocket.o cmdsocket.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -c -o obey.o obey.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -c -o ignore.o ignore.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -c -o uinput.o uinput.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -c -o triggerparser.o triggerparser.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc thd.o keystate.o trigger.o eventnames.o devices.o cmdsocket.o obey.o ignore.o uinput.o triggerparser.o -o thd /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -c -o th-cmd.o th-cmd.c /tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc th-cmd.o cmdsocket.o -o th-cmd make[1]: Leaving directory '/tmp/instance-18/output-1/build/triggerhappy-0.5.0' >>> triggerhappy 0.5.0 Installing to target /usr/bin/install -d /tmp/instance-18/output-1/target/etc/triggerhappy/triggers.d /usr/bin/install -D -m 0755 /tmp/instance-18/output-1/build/triggerhappy-0.5.0/thd /tmp/instance-18/output-1/target/usr/sbin/thd /usr/bin/install -D -m 0755 /tmp/instance-18/output-1/build/triggerhappy-0.5.0/th-cmd /tmp/instance-18/output-1/target/usr/sbin/th-cmd /usr/bin/install -m 0755 -D package/triggerhappy/S10triggerhappy /tmp/instance-18/output-1/target/etc/init.d/S10triggerhappy >>> Finalizing host directory >>> Finalizing target directory mkdir -p /tmp/instance-18/output-1/host/etc/meson sed -e "s%@TARGET_CFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O3', '-g0', '-D_FORTIFY_SOURCE=1'@PKG_TARGET_CFLAGS@%g" -e "s%@TARGET_LDFLAGS@%@PKG_TARGET_LDFLAGS@%g" -e "s%@TARGET_CXXFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O3', '-g0', '-D_FORTIFY_SOURCE=1'@PKG_TARGET_CXXFLAGS@%g" -e "s%@TARGET_FCFLAGS@%'-O3', '-g0'@PKG_TARGET_FCFLAGS@%g" -e "s%@TARGET_CC@%/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc%g" -e "s%@TARGET_CXX@%/bin/false%g" -e "s%@TARGET_AR@%/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc-ar%g" -e "s%@TARGET_FC@%/bin/false%g" -e "s%@TARGET_STRIP@%/bin/true%g" -e "s%@TARGET_ARCH@%ppc64%g" -e "s%@TARGET_CPU@%power5%g" -e "s%@TARGET_ENDIAN@%big%g" -e "s%@TARGET_FCFLAGS@%%g" -e "s%@TARGET_CFLAGS@%%g" -e "s%@TARGET_LDFLAGS@%%g" -e "s%@TARGET_CXXFLAGS@%%g" -e "s%@BR2_CMAKE@%/tmp/instance-18/output-1/host/bin/cmake%g" -e "s%@PKGCONF_HOST_BINARY@%/tmp/instance-18/output-1/host/bin/pkgconf%g" -e "s%@HOST_DIR@%/tmp/instance-18/output-1/host%g" -e "s%@STAGING_DIR@%/tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot%g" -e "s%@STATIC@%false%g" /tmp/instance-18/buildroot/support/misc/cross-compilation.conf.in > /tmp/instance-18/output-1/host/etc/meson/cross-compilation.conf.in sed -e "s%@TARGET_CC@%/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc%g" -e "s%@TARGET_CXX@%/bin/false%g" -e "s%@TARGET_AR@%/tmp/instance-18/output-1/host/bin/powerpc64-buildroot-linux-gnu-gcc-ar%g" -e "s%@TARGET_FC@%/bin/false%g" -e "s%@TARGET_STRIP@%/bin/true%g" -e "s%@TARGET_ARCH@%ppc64%g" -e "s%@TARGET_CPU@%power5%g" -e "s%@TARGET_ENDIAN@%big%g" -e "s%@TARGET_FCFLAGS@%'-O3', '-g0'%g" -e "s%@TARGET_CFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O3', '-g0', '-D_FORTIFY_SOURCE=1'%g" -e "s%@TARGET_LDFLAGS@%%g" -e "s%@TARGET_CXXFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O3', '-g0', '-D_FORTIFY_SOURCE=1'%g" -e "s%@BR2_CMAKE@%/tmp/instance-18/output-1/host/bin/cmake%g" -e "s%@PKGCONF_HOST_BINARY@%/tmp/instance-18/output-1/host/bin/pkgconf%g" -e "s%@HOST_DIR@%/tmp/instance-18/output-1/host%g" -e "s%@STAGING_DIR@%/tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot%g" -e "s%@STATIC@%false%g" /tmp/instance-18/buildroot/support/misc/cross-compilation.conf.in > /tmp/instance-18/output-1/host/etc/meson/cross-compilation.conf grep -qsE '^/bin/bash$' /tmp/instance-18/output-1/target/etc/shells || echo "/bin/bash" >> /tmp/instance-18/output-1/target/etc/shells rm -f -r /tmp/instance-18/output-1/target/usr/share/openrc mkdir -p /tmp/instance-18/output-1/target/etc echo "buildroot" > /tmp/instance-18/output-1/target/etc/hostname /usr/bin/sed -i -e '$a \127.0.1.1\tbuildroot' -e '/^127.0.1.1/d' /tmp/instance-18/output-1/target/etc/hosts mkdir -p /tmp/instance-18/output-1/target/etc echo "Welcome to Buildroot" > /tmp/instance-18/output-1/target/etc/issue /usr/bin/sed -i -e s,^root:[^:]*:,root:"*":, /tmp/instance-18/output-1/target/etc/shadow grep -qsE '^/bin/sh$' /tmp/instance-18/output-1/target/etc/shells || echo "/bin/sh" >> /tmp/instance-18/output-1/target/etc/shells ln -sf bash /tmp/instance-18/output-1/target/bin/sh /usr/bin/sed -i -e '/^root:/s,[^/]*$,bash,' /tmp/instance-18/output-1/target/etc/passwd rm -rf /tmp/instance-18/output-1/target/usr/include /tmp/instance-18/output-1/target/usr/share/aclocal \ /tmp/instance-18/output-1/target/usr/lib/pkgconfig /tmp/instance-18/output-1/target/usr/share/pkgconfig \ /tmp/instance-18/output-1/target/usr/lib/cmake /tmp/instance-18/output-1/target/usr/share/cmake \ /tmp/instance-18/output-1/target/usr/lib/rpm /tmp/instance-18/output-1/target/usr/doc find /tmp/instance-18/output-1/target/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f find /tmp/instance-18/output-1/target/lib/ /tmp/instance-18/output-1/target/usr/lib/ /tmp/instance-18/output-1/target/usr/libexec/ \ \( -name '*.a' -o -name '*.la' -o -name '*.prl' \) -print0 | xargs -0 rm -f rm -rf /tmp/instance-18/output-1/target/usr/share/gdb rm -rf /tmp/instance-18/output-1/target/usr/share/zsh rm -rf /tmp/instance-18/output-1/target/usr/man /tmp/instance-18/output-1/target/usr/share/man rm -rf /tmp/instance-18/output-1/target/usr/info /tmp/instance-18/output-1/target/usr/share/info rm -rf /tmp/instance-18/output-1/target/usr/doc /tmp/instance-18/output-1/target/usr/share/doc rm -rf /tmp/instance-18/output-1/target/usr/share/gtk-doc rmdir /tmp/instance-18/output-1/target/usr/share 2>/dev/null || true rm -rf /tmp/instance-18/output-1/target/lib/debug /tmp/instance-18/output-1/target/usr/lib/debug find /tmp/instance-18/output-1/target -type f \( -perm /111 -o -name '*.so*' \) -not \( -name 'libpthread*.so*' -o -name 'ld-*.so*' -o -name '*.ko' \) -print0 | xargs -0 /bin/true 2>/dev/null || true find /tmp/instance-18/output-1/target \( -name 'ld-*.so*' -o -name 'libpthread*.so*' \) -print0 | xargs -0 -r /bin/true 2>/dev/null || true test -f /tmp/instance-18/output-1/target/etc/ld.so.conf && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true test -d /tmp/instance-18/output-1/target/etc/ld.so.conf.d && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf.d directory"; exit 1; } || true mkdir -p /tmp/instance-18/output-1/target/etc ( \ echo "NAME=Buildroot"; \ echo "VERSION=2023.02-112-g9f5c8bd430"; \ echo "ID=buildroot"; \ echo "VERSION_ID=2023.05-git"; \ echo "PRETTY_NAME=\"Buildroot 2023.05-git\"" \ ) > /tmp/instance-18/output-1/target/usr/lib/os-release ln -sf ../usr/lib/os-release /tmp/instance-18/output-1/target/etc >>> Sanitizing RPATH in target tree PER_PACKAGE_DIR=/tmp/instance-18/output-1/per-package /tmp/instance-18/buildroot/support/scripts/fix-rpath target touch /tmp/instance-18/output-1/target/usr ln -snf /tmp/instance-18/output-1/host/powerpc64-buildroot-linux-gnu/sysroot /tmp/instance-18/output-1/staging make: Leaving directory '/tmp/instance-18/buildroot' make: Entering directory '/tmp/instance-18/buildroot' >>> Buildroot 2023.02-112-g9f5c8bd430 Collecting legal info COPYING: OK (sha256: 9755181e27175cb3510b4da8629caa406fb355a19aa8e7d55f06bf8ab33323c4) >>> toolchain-buildroot Collecting legal info >>> host-gcc-final 11.3.0 Collecting legal info >>> glibc 2.36-81-g4f4d7a13edfd2fdc57c9d76e1fd6d017fb47550c Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) LICENSES: OK (sha256: b33d0bd9f685b46853548814893a6135e74430d12f6d94ab3eba42fc591f83bc) >>> host-bison 3.8.2 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> host-m4 1.4.19 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> host-skeleton Collecting legal info >>> host-gawk 5.2.0 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-gcc-initial 11.3.0 Collecting legal info >>> host-binutils 2.38 Collecting legal info COPYING3: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) COPYING.LIB: OK (sha256: 56bdea73b6145ef6ac5259b3da390b981d840c24cb03b8e1cbc678de7ecfa18d) >>> host-gmp 6.2.1 Collecting legal info COPYING.LESSERv3: OK (sha256: a853c2ffec17057872340eee242ae4d96cbf2b520ae27d903e1b2fef1a5f9d1c) COPYINGv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> host-mpc 1.2.1 Collecting legal info COPYING.LESSER: OK (sha256: da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768) >>> host-mpfr 4.1.1 Collecting legal info COPYING.LESSER: OK (sha256: e3a994d82e644b03a792a930f574002658412f62407f5fee083f2555c5f23118) >>> linux-headers 6.1.14 Collecting legal info COPYING: OK (sha256: fb5a425bd3b3cd6071a3a9aff9909a859e7c1158d54d32e07658398cd67eb6a0) LICENSES/preferred/GPL-2.0: OK (sha256: f6b78c087c3ebdf0f3c13415070dd480a3f35d8fc76f3d02180a407c1c812f79) LICENSES/exceptions/Linux-syscall-note: OK (sha256: 8e378ab93586eb55135d3bc119cce787f7324f48394777d00c34fa3d0be3303f) >>> skeleton Collecting legal info >>> skeleton-init-openrc Collecting legal info >>> skeleton-init-common Collecting legal info >>> toolchain Collecting legal info >>> bash 5.2.15 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> ncurses 6.3-20221224 Collecting legal info COPYING: OK (sha256: 63de87399e9fc8860236082b6b0520e068e9eb1fad0ebd30202aa30bb6f690ac) >>> host-ncurses 6.3-20221224 Collecting legal info COPYING: OK (sha256: 63de87399e9fc8860236082b6b0520e068e9eb1fad0ebd30202aa30bb6f690ac) >>> readline 8.2 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-autoconf 2.71 Collecting legal info COPYINGv3: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) COPYING.EXCEPTION: OK (sha256: 1f1cde9fb68b9b3cff18c420894bec5bd4defacd700b7d13df54a887301e5350) >>> host-libtool 2.4.6 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) libltdl/COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> bzip2 1.0.8 Collecting legal info LICENSE: OK (sha256: c6dbbf828498be844a89eaa3b84adbab3199e342eb5cb2ed2f0d4ba7ec0f38a3) >>> cmocka 1.1.5 Collecting legal info COPYING: OK (sha256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30) >>> host-cmake 3.22.3 Collecting legal info Copyright.txt: OK (sha256: f1a4326266aada65b307dac05161a9d02d3dba4fb08b50cb26e3c24cc8a86e97) >>> host-pkgconf 1.6.3 Collecting legal info COPYING: OK (sha256: 07ee94b50a41ee3fc4e13a9b9c60b26fc28488494c465639f7e5f07a3952ec04) >>> host-erofs-utils 1.5 Collecting legal info COPYING: OK (sha256: 0df042de29b44887355db86c79708a4489ce6e6666f6e33ad02040293f09e6a2) LICENSES/Apache-2.0: OK (sha256: a400f85dd06d230f1b308cde4290a53f345b6e320a376b7904b31c51c2fd4b1a) LICENSES/GPL-2.0: OK (sha256: feee3b3157dcdf78d4f50edefbd5dd7adf8b6d52c11bfaaa746a85a373256713) >>> host-automake 1.16.5 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> host-lz4 1.9.4 Collecting legal info lib/LICENSE: OK (sha256: 8b58c446121a109ccf32edc094bba3010a3d85e4ee3702950db55e4d3e87736c) programs/COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> host-util-linux 2.38 Collecting legal info README.licensing: OK (sha256: 869660b5269f4f40a8a679da7f403ea3a6e71d46087aab5e14871b09bcb55955) Documentation/licenses/COPYING.BSD-3-Clause: OK (sha256: 9b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6d) Documentation/licenses/COPYING.BSD-4-Clause-UC: OK (sha256: ba7640f00d93e72e92b94b9d71f25ec53bac2f1682f5c4adcccb0018359f60f8) Documentation/licenses/COPYING.GPL-2.0-or-later: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) Documentation/licenses/COPYING.ISC: OK (sha256: e53348ce276358e9997014071c5294b36a18c4b34f32f00ee57b9acce0aafd63) Documentation/licenses/COPYING.LGPL-2.1-or-later: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-zlib Collecting legal info >>> host-libzlib 1.2.13 Collecting legal info LICENSE: OK (sha256: 845efc77857d485d91fb3e0b884aaa929368c717ae8186b66fe1ed2495753243) >>> ipmitool 1_8_19 Collecting legal info COPYING: OK (sha256: b7e2382a8be43b5f6cb092f2d2bda163bf1a1938be9300f821a845cbcd535f56) >>> ipset 7.16 Collecting legal info COPYING: OK (sha256: 231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c) >>> libmnl 1.0.5 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> kmod 30 Collecting legal info libkmod/COPYING: OK (sha256: 6095e9ffa777dd22839f7801aa845b31c9ed07f3d6bf8a26dc5d2dec8ccc0ef3) COPYING: OK (sha256: 6095e9ffa777dd22839f7801aa845b31c9ed07f3d6bf8a26dc5d2dec8ccc0ef3) >>> xz 5.2.10 Collecting legal info COPYING: OK (sha256: bcb02973ef6e87ea73d331b3a80df7748407f17efdb784b61b47e0e610d3bb5c) COPYING.GPLv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) COPYING.GPLv3: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) COPYING.LGPLv2.1: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> zlib Collecting legal info >>> libzlib 1.2.13 Collecting legal info LICENSE: OK (sha256: 845efc77857d485d91fb3e0b884aaa929368c717ae8186b66fe1ed2495753243) >>> libgta 1.2.1 Collecting legal info COPYING: OK (sha256: 36b6d3fa47916943fd5fec313c584784946047ec1337a78b440e5992cb595f89) >>> libopusenc 0.2.1 Collecting legal info COPYING: OK (sha256: 93b17ab56b8230127fea532be0dcb4e6d71e66ab5e8ce5d6ae8785d7288b164f) >>> opus 1.3.1 Collecting legal info COPYING: OK (sha256: 8338ce8d922bb4416ce3dd1e5680173332435e3f0755007ac7801ccd674fe682) >>> libosip2 5.3.1 Collecting legal info COPYING: OK (sha256: 8d9e95ed0e48df46dc758eb0d86df611f771eab4eed94bebb77dca87f1c897de) >>> libuio 6ef3d8d096a641686bfdd112035aa04aa16fe81a Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-gettext Collecting legal info >>> host-gettext-tiny 0.3.2 Collecting legal info LICENSE: OK (sha256: 4c938aa3d8fa3c184bba5e87a8a2febc89560627c9d0567536879e3eca1a7b4f) extra/COPYING: OK (sha256: e79e9c8a0c85d735ff98185918ec94ed7d175efc377012787aebcf3b80f0d90b) >>> murata-cyw-fw 8d87950bfad28c65926695b7357bd8995b60016a Collecting legal info LICENCE.cypress: OK (sha256: 3a892759b73e8b459f1a750954b316118b0061fd9d1868d11fa258c104ee7e0c) >>> openrc 0.43.3 Collecting legal info LICENSE: OK (sha256: 96862463f4e77e2508e4fc2c83773fd24807cb699368b63fd93a5e2b466dd624) >>> host-patchelf 0.13 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> szip 2.1.1 Collecting legal info COPYING: OK (sha256: 98cc66747133b26563fefc4630ad4c8c7848c722c7b8a60ecd4afbc4c7d7eb01) >>> triggerhappy 0.5.0 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) WARNING: the Buildroot source code has not been saved WARNING: gcc-final-11.3.0: cannot save license (HOST_GCC_FINAL_LICENSE_FILES not defined) WARNING: gcc-initial-11.3.0: cannot save license (HOST_GCC_INITIAL_LICENSE_FILES not defined) Legal info produced in /tmp/instance-18/output-1/legal-info make: Leaving directory '/tmp/instance-18/buildroot'