>>> ripgrep 0.8.1 Extracting gzip -d -c /usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/dl/ripgrep/ripgrep-0.8.1.tar.gz | /usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/host/bin/tar --strip-components=1 -C /usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/build/ripgrep-0.8.1 -xf - >>> ripgrep 0.8.1 Patching >>> ripgrep 0.8.1 Configuring >>> ripgrep 0.8.1 Building PATH="/usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/host/bin:/usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/host/sbin:/usr/lfs/v0/bin/:/accts/mlweber1/python/:/accts/mlweber1/.local/bin:/accts/mlweber1/.local/bin:/accts/mlweber1/python/Python-2.7.11/:/usr/lfs/v0/bin/:/accts/mlweber1/python/:/usr/bin:/bin" CARGO_HOME=/usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/host/share/cargo cargo build --target=x86_64-unknown-linux-gnu --manifest-path=/usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/build/ripgrep-0.8.1/Cargo.toml --release warning: /usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/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: * /usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/build/ripgrep-0.8.1/tests/hay.rs * /usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/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 strsim v0.7.0 Downloaded void v1.0.2 Downloaded utf8-ranges v1.0.0 Downloaded unicode-width v0.1.4 Downloaded fnv v1.0.6 Downloaded aho-corasick v0.6.4 Downloaded textwrap v0.9.0 Downloaded memmap v0.6.2 Downloaded log v0.4.1 Downloaded memchr v2.0.1 Downloaded bitflags v1.0.1 Downloaded unreachable v1.0.0 Downloaded thread_local v0.3.5 Downloaded same-file v1.0.2 Downloaded num_cpus v1.8.0 Downloaded libc v0.2.36 Downloaded regex v0.2.6 Downloaded lazy_static v1.0.0 Downloaded cfg-if v0.1.2 Downloaded ansi_term v0.10.2 Downloaded encoding_rs v0.7.2 Downloaded regex-syntax v0.4.2 Downloaded walkdir v2.1.4 Downloaded bytecount v0.3.1 Downloaded atty v0.2.6 Downloaded crossbeam v0.3.2 Downloaded clap v2.30.0 Compiling libc v0.2.36 Compiling void v1.0.2 Compiling cfg-if v0.1.2 Compiling lazy_static v1.0.0 Compiling unicode-width v0.1.4 Compiling regex-syntax v0.4.2 Compiling utf8-ranges v1.0.0 Compiling strsim v0.7.0 Compiling bitflags v1.0.1 Compiling ansi_term v0.10.2 Compiling fnv v1.0.6 Compiling same-file v1.0.2 Compiling crossbeam v0.3.2 Compiling termcolor v0.3.5 (/usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/build/ripgrep-0.8.1/termcolor) Compiling bytecount v0.3.1 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 num_cpus v1.8.0 Compiling memmap v0.6.2 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 (/usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/build/ripgrep-0.8.1/globset) Compiling grep v0.1.8 (/usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/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 (/usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/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 (/usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/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: 1 warning emitted error: failed to run custom build command for `ripgrep v0.8.1 (/usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/build/ripgrep-0.8.1)` Caused by: process didn't exit successfully: `/usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/build/ripgrep-0.8.1/target/release/build/ripgrep-1bd2e60d7150a54c/build-script-build` (exit code: 1) --- stderr /usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/build/ripgrep-0.8.1/target/release/build/ripgrep-1bd2e60d7150a54c/build-script-build: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by /usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/build/ripgrep-0.8.1/target/release/build/ripgrep-1bd2e60d7150a54c/build-script-build) warning: build failed, waiting for other jobs to finish... warning: 11 warnings emitted error: build failed make: *** [/usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/output-1/build/ripgrep-0.8.1/.stamp_built] Error 101 make: Leaving directory `/usr/lfs/hdd_v1/rc-buildroot-test/scripts/instance-1/buildroot'