>>> host-rust-bin 1.52.0 Configuring >>> host-rust-bin 1.52.0 Building >>> host-rust-bin 1.52.0 Installing to host directory (cd /home/buildroot/autobuild/run/instance-2/output-1/build/host-rust-bin-1.52.0; ./install.sh --prefix=/home/buildroot/autobuild/run/instance-2/output-1/host --disable-ldconfig --components=rustc,cargo,rust-std-x86_64-unknown-linux-gnu) install: creating uninstall script at /home/buildroot/autobuild/run/instance-2/output-1/host/lib/rustlib/uninstall.sh install: installing component 'rustc' install: installing component 'cargo' install: installing component 'rust-std-x86_64-unknown-linux-gnu' rust installed. (cd /home/buildroot/autobuild/run/instance-2/output-1/build/host-rust-bin-1.52.0/std/rust-std-1.52.0-i586-unknown-linux-musl; ./install.sh --prefix=/home/buildroot/autobuild/run/instance-2/output-1/host --disable-ldconfig) install: creating uninstall script at /home/buildroot/autobuild/run/instance-2/output-1/host/lib/rustlib/uninstall.sh install: installing component 'rust-std-i586-unknown-linux-musl' rust std installed. >>> host-rustc Extracting >>> host-rustc Patching >>> host-rustc Configuring >>> host-rustc Building >>> host-rustc Installing to host directory ripgrep-0.8.1.tar.gz: OK (sha256: 7035379fce0c1e32552e8ee528b92c3d01b8d3935ea31d26c51a73287be74bb3) >>> ripgrep 0.8.1 Extracting gzip -d -c /home/buildroot/autobuild/run/instance-2/dl/ripgrep/ripgrep-0.8.1.tar.gz | tar --strip-components=1 -C /home/buildroot/autobuild/run/instance-2/output-1/build/ripgrep-0.8.1 -xf - >>> ripgrep 0.8.1 Patching >>> ripgrep 0.8.1 Configuring >>> ripgrep 0.8.1 Building PATH="/home/buildroot/autobuild/run/instance-2/output-1/host/bin:/home/buildroot/autobuild/run/instance-2/output-1/host/sbin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games" CARGO_HOME=/home/buildroot/autobuild/run/instance-2/output-1/host/share/cargo cargo build --target=i586-unknown-linux-musl --manifest-path=/home/buildroot/autobuild/run/instance-2/output-1/build/ripgrep-0.8.1/Cargo.toml --release warning: /home/buildroot/autobuild/run/instance-2/output-1/build/ripgrep-0.8.1/Cargo.toml: An explicit [[test]] section is specified in Cargo.toml which currently disables Cargo from automatically inferring other test targets. This inference behavior will change in the Rust 2018 edition and the following files will be included as a test target: * /home/buildroot/autobuild/run/instance-2/output-1/build/ripgrep-0.8.1/tests/hay.rs * /home/buildroot/autobuild/run/instance-2/output-1/build/ripgrep-0.8.1/tests/workdir.rs This is likely to break cargo build or cargo test as these files may not be ready to be compiled as a test target today. You can future-proof yourself and disable this warning by adding `autotests = false` to your [package] section. You may also move the files to a location where Cargo would not automatically infer them to be a target, such as in subfolders. For more information on this warning you can consult https://github.com/rust-lang/cargo/issues/5330 Updating crates.io index Downloading crates ... Downloaded crossbeam v0.3.2 Downloaded unreachable v1.0.0 Downloaded strsim v0.7.0 Downloaded num_cpus v1.8.0 Downloaded unicode-width v0.1.4 Downloaded bitflags v1.0.1 Downloaded clap v2.30.0 Downloaded memchr v2.0.1 Downloaded log v0.4.1 Downloaded aho-corasick v0.6.4 Downloaded fnv v1.0.6 Downloaded libc v0.2.36 Downloaded walkdir v2.1.4 Downloaded ansi_term v0.10.2 Downloaded void v1.0.2 Downloaded cfg-if v0.1.2 Downloaded lazy_static v1.0.0 Downloaded thread_local v0.3.5 Downloaded textwrap v0.9.0 Downloaded encoding_rs v0.7.2 Downloaded utf8-ranges v1.0.0 Downloaded memmap v0.6.2 Downloaded regex-syntax v0.4.2 Downloaded atty v0.2.6 Downloaded regex v0.2.6 Downloaded same-file v1.0.2 Downloaded bytecount v0.3.1 Compiling libc v0.2.36 Compiling void v1.0.2 Compiling lazy_static v1.0.0 Compiling cfg-if v0.1.2 Compiling regex-syntax v0.4.2 Compiling utf8-ranges v1.0.0 Compiling unicode-width v0.1.4 Compiling strsim v0.7.0 Compiling bitflags v1.0.1 Compiling ansi_term v0.10.2 Compiling same-file v1.0.2 Compiling fnv v1.0.6 Compiling crossbeam v0.3.2 Compiling bytecount v0.3.1 Compiling termcolor v0.3.5 (/home/buildroot/autobuild/run/instance-2/output-1/build/ripgrep-0.8.1/termcolor) Compiling log v0.4.1 Compiling encoding_rs v0.7.2 Compiling unreachable v1.0.0 Compiling textwrap v0.9.0 Compiling walkdir v2.1.4 Compiling memchr v2.0.1 Compiling atty v0.2.6 Compiling memmap v0.6.2 Compiling num_cpus v1.8.0 Compiling thread_local v0.3.5 Compiling aho-corasick v0.6.4 Compiling clap v2.30.0 Compiling regex v0.2.6 Compiling globset v0.3.0 (/home/buildroot/autobuild/run/instance-2/output-1/build/ripgrep-0.8.1/globset) Compiling grep v0.1.8 (/home/buildroot/autobuild/run/instance-2/output-1/build/ripgrep-0.8.1/grep) warning: trait objects without an explicit `dyn` are deprecated --> grep/src/lib.rs:53:32 | 53 | fn cause(&self) -> Option<&error::Error> { | ^^^^^^^^^^^^ help: use `dyn`: `dyn error::Error` | = note: `#[warn(bare_trait_objects)]` on by default warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() --> grep/src/lib.rs:47:42 | 47 | Error::Regex(ref err) => err.description(), | ^^^^^^^^^^^ | = note: `#[warn(deprecated)]` on by default warning: use of deprecated associated function `std::error::Error::cause`: replaced by Error::source, which can support downcasting --> grep/src/lib.rs:55:42 | 55 | Error::Regex(ref err) => err.cause(), | ^^^^^ Compiling ignore v0.4.1 (/home/buildroot/autobuild/run/instance-2/output-1/build/ripgrep-0.8.1/ignore) warning: trait objects without an explicit `dyn` are deprecated --> ignore/src/walk.rs:464:9 | 464 | Fn(&OsStr, &OsStr) -> cmp::Ordering + Send + Sync + 'static | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&OsStr, &OsStr) -> cmp::Ordering + Send + Sync + 'static` | = note: `#[warn(bare_trait_objects)]` on by default warning: trait objects without an explicit `dyn` are deprecated --> ignore/src/walk.rs:964:31 | 964 | ) where F: FnMut() -> Box) -> WalkState + Send + 'static> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(Result) -> WalkState + Send + 'static` warning: trait objects without an explicit `dyn` are deprecated --> ignore/src/walk.rs:1110:12 | 1110 | f: Box) -> WalkState + Send + 'static>, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(Result) -> WalkState + Send + 'static` warning: use of deprecated function `std::env::home_dir`: This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead. --> ignore/src/gitignore.rs:532:21 | 532 | .or_else(|| env::home_dir().map(|p| p.join(".config"))) | ^^^^^^^^^^^^^ | = note: `#[warn(deprecated)]` on by default warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred --> ignore/src/gitignore.rs:542:5 | 542 | / lazy_static! { 543 | | static ref RE: Regex = Regex::new( 544 | | r"(?ium)^\s*excludesfile\s*=\s*(.+)\s*$").unwrap(); 545 | | }; | |______^ | = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred --> ignore/src/types.rs:621:9 | 621 | / lazy_static! { 622 | | static ref RE: Regex = Regex::new(r"^[\pL\pN]+$").unwrap(); 623 | | }; | |__________^ | = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() --> ignore/src/lib.rs:233:58 | 233 | Error::WithLineNumber { ref err, .. } => err.description(), | ^^^^^^^^^^^ warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() --> ignore/src/lib.rs:234:52 | 234 | Error::WithPath { ref err, .. } => err.description(), | ^^^^^^^^^^^ warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() --> ignore/src/lib.rs:235:53 | 235 | Error::WithDepth { ref err, .. } => err.description(), | ^^^^^^^^^^^ warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() --> ignore/src/lib.rs:237:39 | 237 | Error::Io(ref err) => err.description(), | ^^^^^^^^^^^ warning: use of deprecated associated function `core::str::::trim_right`: superseded by `trim_end` --> ignore/src/gitignore.rs:415:25 | 415 | line = line.trim_right(); | ^^^^^^^^^^ help: replace the use of the deprecated associated function: `trim_end` warning: 3 warnings emitted Compiling ripgrep v0.8.1 (/home/buildroot/autobuild/run/instance-2/output-1/build/ripgrep-0.8.1) warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred --> src/app.rs:57:5 | 57 | / lazy_static! { 58 | | static ref LONG_VERSION: String = long_version(None); 59 | | } | |_____^ | = note: `#[warn(deprecated)]` on by default = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) warning: 11 warnings emitted warning: 1 warning emitted warning: use of deprecated macro `try`: use the `?` operator instead --> src/args.rs:382:32 | 382 | line_number_width: try!(self.usize_of("line-number-width")), | ^^^ | = note: `#[warn(deprecated)]` on by default warning: trait objects without an explicit `dyn` are deprecated --> src/config.rs:58:37 | 58 | ) -> Result<(Vec, Vec>)> { | ^^^^^ help: use `dyn`: `dyn Error` | = note: `#[warn(bare_trait_objects)]` on by default warning: trait objects without an explicit `dyn` are deprecated --> src/config.rs:79:37 | 79 | ) -> Result<(Vec, Vec>)> { | ^^^^^ help: use `dyn`: `dyn Error` warning: trait objects without an explicit `dyn` are deprecated --> src/printer.rs:537:32 | 537 | fn cause(&self) -> Option<&error::Error> { | ^^^^^^^^^^^^ help: use `dyn`: `dyn error::Error` warning: trait objects without an explicit `dyn` are deprecated --> src/search_stream.rs:46:32 | 46 | fn cause(&self) -> Option<&StdError> { | ^^^^^^^^ help: use `dyn`: `dyn StdError` warning: `...` range patterns are deprecated --> src/unescape.rs:40:24 | 40 | '0'...'9' | 'A'...'F' | 'a'...'f' => { | ^^^ help: use `..=` for an inclusive range | = note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default warning: `...` range patterns are deprecated --> src/unescape.rs:40:36 | 40 | '0'...'9' | 'A'...'F' | 'a'...'f' => { | ^^^ help: use `..=` for an inclusive range warning: `...` range patterns are deprecated --> src/unescape.rs:40:48 | 40 | '0'...'9' | 'A'...'F' | 'a'...'f' => { | ^^^ help: use `..=` for an inclusive range warning: `...` range patterns are deprecated --> src/unescape.rs:51:24 | 51 | '0'...'9' | 'A'...'F' | 'a'...'f' => { | ^^^ help: use `..=` for an inclusive range warning: `...` range patterns are deprecated --> src/unescape.rs:51:36 | 51 | '0'...'9' | 'A'...'F' | 'a'...'f' => { | ^^^ help: use `..=` for an inclusive range warning: `...` range patterns are deprecated --> src/unescape.rs:51:48 | 51 | '0'...'9' | 'A'...'F' | 'a'...'f' => { | ^^^ help: use `..=` for an inclusive range warning: trait objects without an explicit `dyn` are deprecated --> src/main.rs:53:44 | 53 | pub type Result = result::Result>; | ^^^^^ help: use `dyn`: `dyn Error` warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred --> src/app.rs:57:5 | 57 | / lazy_static! { 58 | | static ref LONG_VERSION: String = long_version(None); 59 | | } | |_____^ | = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred --> src/decompressor.rs:36:1 | 36 | / lazy_static! { 37 | | static ref DECOMPRESSION_COMMANDS: HashMap< 38 | | &'static str, 39 | | DecompressionCommand, ... | 70 | | }; 71 | | } | |_^ | = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred --> src/decompressor.rs:36:1 | 36 | / lazy_static! { 37 | | static ref DECOMPRESSION_COMMANDS: HashMap< 38 | | &'static str, 39 | | DecompressionCommand, ... | 70 | | }; 71 | | } | |_^ | = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred --> src/decompressor.rs:36:1 | 36 | / lazy_static! { 37 | | static ref DECOMPRESSION_COMMANDS: HashMap< 38 | | &'static str, 39 | | DecompressionCommand, ... | 70 | | }; 71 | | } | |_^ | = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() --> src/search_stream.rs:42:46 | 42 | Error::Io { ref err, .. } => err.description(), | ^^^^^^^^^^^ warning: 17 warnings emitted Finished release [optimized + debuginfo] target(s) in 1m 33s >>> ripgrep 0.8.1 Installing to target /usr/bin/install -D -m 0755 /home/buildroot/autobuild/run/instance-2/output-1/build/ripgrep-0.8.1/target/i586-unknown-linux-musl/release/rg /home/buildroot/autobuild/run/instance-2/output-1/target/usr/bin/rg >>> Finalizing host directory >>> Finalizing target directory mkdir -p /home/buildroot/autobuild/run/instance-2/output-1/host/etc/meson sed -e 's%@TARGET_CROSS@%/home/buildroot/autobuild/run/instance-2/output-1/host/bin/i586-linux-%g' -e 's%@TARGET_ARCH@%x86%g' -e 's%@TARGET_CPU@%%g' -e 's%@TARGET_ENDIAN@%little%g' -e "s%@TARGET_CFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-Os', '-g0', '-DNDEBUG'@PKG_TARGET_CFLAGS@%g" -e "s%@TARGET_LDFLAGS@%@PKG_TARGET_CFLAGS@%g" -e "s%@TARGET_CXXFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-Os', '-g0', '-DNDEBUG'@PKG_TARGET_CFLAGS@%g" -e 's%@HOST_DIR@%/home/buildroot/autobuild/run/instance-2/output-1/host%g' -e 's%@STAGING_DIR@%/home/buildroot/autobuild/run/instance-2/output-1/host/i586-buildroot-linux-musl/sysroot%g' -e 's%@STATIC@%false%g' package/meson//cross-compilation.conf.in > /home/buildroot/autobuild/run/instance-2/output-1/host/etc/meson/cross-compilation.conf.in sed -e 's%@PKG_TARGET_CFLAGS@%%g' -e 's%@PKG_TARGET_LDFLAGS@%%g' -e 's%@PKG_TARGET_CXXFLAGS@%%g' /home/buildroot/autobuild/run/instance-2/output-1/host/etc/meson/cross-compilation.conf.in > /home/buildroot/autobuild/run/instance-2/output-1/host/etc/meson/cross-compilation.conf grep -qsE '^/bin/bash$' /home/buildroot/autobuild/run/instance-2/output-1/target/etc/shells || echo "/bin/bash" >> /home/buildroot/autobuild/run/instance-2/output-1/target/etc/shells mkdir -p /home/buildroot/autobuild/run/instance-2/output-1/target/etc echo "buildroot" > /home/buildroot/autobuild/run/instance-2/output-1/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-1/target/etc/hosts mkdir -p /home/buildroot/autobuild/run/instance-2/output-1/target/etc echo "Welcome to Buildroot" > /home/buildroot/autobuild/run/instance-2/output-1/target/etc/issue /bin/sed -i -e s,^root:[^:]*:,root::, /home/buildroot/autobuild/run/instance-2/output-1/target/etc/shadow rm -f /home/buildroot/autobuild/run/instance-2/output-1/target/bin/sh printf '%s\n' C en_US locale-archive > /home/buildroot/autobuild/run/instance-2/output-1/build/locales.nopurge for dir in /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/locale /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/X11/locale /home/buildroot/autobuild/run/instance-2/output-1/target/usr/lib/locale; do if [ ! -d $dir ]; then continue; fi; for langdir in $dir/*; do if [ -e "${langdir}" ]; then grep -qx "${langdir##*/}" /home/buildroot/autobuild/run/instance-2/output-1/build/locales.nopurge || rm -rf $langdir; fi done; done if [ -d /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/X11/locale ]; then for lang in C en_US; do if [ -f /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/X11/locale/$lang/XLC_LOCALE ]; then echo "$lang/XLC_LOCALE: $lang"; fi done > /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/X11/locale/locale.dir; fi rm -rf /home/buildroot/autobuild/run/instance-2/output-1/target/usr/include /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/aclocal \ /home/buildroot/autobuild/run/instance-2/output-1/target/usr/lib/pkgconfig /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/pkgconfig \ /home/buildroot/autobuild/run/instance-2/output-1/target/usr/lib/cmake /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/cmake \ /home/buildroot/autobuild/run/instance-2/output-1/target/usr/doc find /home/buildroot/autobuild/run/instance-2/output-1/target/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f find /home/buildroot/autobuild/run/instance-2/output-1/target/lib/ /home/buildroot/autobuild/run/instance-2/output-1/target/usr/lib/ /home/buildroot/autobuild/run/instance-2/output-1/target/usr/libexec/ \ \( -name '*.a' -o -name '*.la' -o -name '*.prl' \) -print0 | xargs -0 rm -f find: `/home/buildroot/autobuild/run/instance-2/output-1/target/usr/libexec/': No such file or directory rm -rf /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/gdb rm -rf /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/zsh rm -rf /home/buildroot/autobuild/run/instance-2/output-1/target/usr/man /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/man rm -rf /home/buildroot/autobuild/run/instance-2/output-1/target/usr/info /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/info rm -rf /home/buildroot/autobuild/run/instance-2/output-1/target/usr/doc /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/doc rm -rf /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share/gtk-doc rmdir /home/buildroot/autobuild/run/instance-2/output-1/target/usr/share 2>/dev/null || true rm -rf /home/buildroot/autobuild/run/instance-2/output-1/target/lib/debug /home/buildroot/autobuild/run/instance-2/output-1/target/usr/lib/debug find /home/buildroot/autobuild/run/instance-2/output-1/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-1/host/bin/i586-linux-strip --remove-section=.comment --remove-section=.note 2>/dev/null || true find /home/buildroot/autobuild/run/instance-2/output-1/target \( -name 'ld-*.so*' -o -name 'libpthread*.so*' \) -print0 | xargs -0 -r /home/buildroot/autobuild/run/instance-2/output-1/host/bin/i586-linux-strip --remove-section=.comment --remove-section=.note --strip-debug 2>/dev/null || true test -f /home/buildroot/autobuild/run/instance-2/output-1/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-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 /home/buildroot/autobuild/run/instance-2/output-1/target/etc ( \ echo "NAME=Buildroot"; \ echo "VERSION=2020.05-5706-ge509ddd"; \ echo "ID=buildroot"; \ echo "VERSION_ID=2021.08-git"; \ echo "PRETTY_NAME=\"Buildroot 2021.08-git\"" \ ) > /home/buildroot/autobuild/run/instance-2/output-1/target/usr/lib/os-release ln -sf ../usr/lib/os-release /home/buildroot/autobuild/run/instance-2/output-1/target/etc >>> Sanitizing RPATH in target tree PER_PACKAGE_DIR=/home/buildroot/autobuild/run/instance-2/output-1/per-package /home/buildroot/autobuild/run/instance-2/buildroot/support/scripts/fix-rpath target touch /home/buildroot/autobuild/run/instance-2/output-1/target/usr ln -snf /home/buildroot/autobuild/run/instance-2/output-1/host/i586-buildroot-linux-musl/sysroot /home/buildroot/autobuild/run/instance-2/output-1/staging make: Leaving directory `/home/buildroot/autobuild/run/instance-2/buildroot' make: Entering directory `/home/buildroot/autobuild/run/instance-2/buildroot' >>> Buildroot 2020.05-5706-ge509ddd Collecting legal info COPYING: OK (sha256: 9755181e27175cb3510b4da8629caa406fb355a19aa8e7d55f06bf8ab33323c4) >>> toolchain-external Collecting legal info >>> host-skeleton Collecting legal info >>> musl-compat-headers 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 >>> alure 14beed2a86d5a36030e907b21c46614d505f07cd Collecting legal info LICENSE: OK (sha256: 7331ddc67daaf1a283c81e8dc17bac8dc40f54ed3fab3d3964616f4bd502a0a3) >>> host-cmake 3.16.9 Collecting legal info Copyright.txt: OK (sha256: dc628fb936a5d229296d42083f9a8218aa32204c016919e784404c9ec58776e9) >>> host-pkgconf 1.6.3 Collecting legal info COPYING: OK (sha256: 07ee94b50a41ee3fc4e13a9b9c60b26fc28488494c465639f7e5f07a3952ec04) >>> openal 1.20.1 Collecting legal info COPYING: OK (sha256: d808ce217e5b611854da622b57ec29fe545584c48bc5352fae72a4b6e5074a15) >>> bash 5.1 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-bison 3.7.6 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> host-m4 1.4.18 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> ncurses 6.1 Collecting legal info COPYING: OK (sha256: 4d1fde61868c73776a539366dccf5d5a4857e7fd7299efb1f02e07c2afe9ea87) >>> host-ncurses 6.1 Collecting legal info COPYING: OK (sha256: 4d1fde61868c73776a539366dccf5d5a4857e7fd7299efb1f02e07c2afe9ea87) >>> readline 8.1 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-autoconf 2.69 Collecting legal info COPYINGv3: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) COPYING.EXCEPTION: OK (sha256: 23ed0b84fa023bfa33433b498192cd08a3bfb1f4864a8ed791a84f3eb48b2dd2) >>> host-libtool 2.4.6 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) libltdl/COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> duma 2.5.15 Collecting legal info COPYING-GPL: OK (sha256: 91df39d1816bfb17a4dda2d3d2c83b1f6f2d38d53e53e41e8f97ad5ac46a0cad) COPYING-LGPL: OK (sha256: a190dc9c8043755d90f8b0a75fa66b9e42d4af4c980bf5ddc633f0124db3cee7) >>> host-f2fs-tools 1.14.0 Collecting legal info COPYING: OK (sha256: 662abb3a8a80b36ae7036c289dd1e03b361ee5dd2e6fd5211d0d8d029146449f) >>> host-automake 1.15.1 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> host-util-linux 2.36.2 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.11 Collecting legal info README: OK (sha256: 7960b6b1cc63e619abb77acaea5427159605afee8c8b362664f4effc7d7f7d15) >>> fio 3.19 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) MORAL-LICENSE: OK (sha256: 8a240c1ad13d1fe3e58588643d81d0695899be4a669fe6d8fafa76ca6a89db2c) >>> zlib Collecting legal info >>> libzlib 1.2.11 Collecting legal info README: OK (sha256: 7960b6b1cc63e619abb77acaea5427159605afee8c8b362664f4effc7d7f7d15) >>> iprutils 2.4.18.1 Collecting legal info LICENSE: OK (sha256: 59b4179e61248aff9cd2d6ee4cd1dbbd0ef48836fe2eeee19f4b16459785104a) >>> libsysfs 2.1.0 Collecting legal info cmd/GPL: OK (sha256: 88ced477f0659c5a4df22df3b65de2f12ea3a9c7b5e4750fdc757bc11e97aa79) lib/LGPL: OK (sha256: 4eb1c0ea980e7e4c7fac34e025be0423f5e7ca7df501e1da7ef31f32f14d6cf9) >>> pciutils 3.7.0 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> libexif 0.6.22 Collecting legal info COPYING: OK (sha256: 36b6d3fa47916943fd5fec313c584784946047ec1337a78b440e5992cb595f89) >>> neofetch 7.1.0 Collecting legal info LICENSE.md: OK (sha256: fc3034b3dd3a08db109949b629210213bba52aa95455cbc5c2fefa2fc1183efe) >>> host-patchelf 0.9 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> ripgrep 0.8.1 Collecting legal info LICENSE-MIT: OK (sha256: 0f96a83840e146e43c0ec96a22ec1f392e0680e6c1226e6f3ba87e0740af850f) >>> host-rustc Collecting legal info >>> host-rust-bin 1.52.0 Collecting legal info LICENSE-APACHE: OK (sha256: 62c7a1e35f56406896d7aa7ca52d0cc0d272ac022b5d2796e7d6905db8a3636a) LICENSE-MIT: OK (sha256: 23f18e03dc49df91622fe2a76176497404e46ced8a715d9d2b67a7446571cca3) WARNING: the Buildroot source code has not been saved WARNING: toolchain-external-custom: cannot save license (TOOLCHAIN_EXTERNAL_CUSTOM_LICENSE_FILES not defined) Legal info produced in /home/buildroot/autobuild/run/instance-2/output-1/legal-info make: Leaving directory `/home/buildroot/autobuild/run/instance-2/buildroot'