[INFO] fetching crate sgx_serialize 1.1.1... [INFO] checking sgx_serialize-1.1.1 against try#8a5e87609850cdd8679aada01eb0f3062f254ca8 for pr-71140 [INFO] extracting crate sgx_serialize 1.1.1 into /workspace/builds/worker-4/source [INFO] validating manifest of crates.io crate sgx_serialize 1.1.1 on toolchain 8a5e87609850cdd8679aada01eb0f3062f254ca8 [INFO] running `"/workspace/cargo-home/bin/cargo" "+8a5e87609850cdd8679aada01eb0f3062f254ca8" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate sgx_serialize 1.1.1 [INFO] finished tweaking crates.io crate sgx_serialize 1.1.1 [INFO] tweaked toml for crates.io crate sgx_serialize 1.1.1 written to /workspace/builds/worker-4/source/Cargo.toml [INFO] running `"/workspace/cargo-home/bin/cargo" "+8a5e87609850cdd8679aada01eb0f3062f254ca8" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/workspace/cargo-home/bin/cargo" "+8a5e87609850cdd8679aada01eb0f3062f254ca8" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+8a5e87609850cdd8679aada01eb0f3062f254ca8" "check" "--frozen" "--all" "--all-targets"` [INFO] [stdout] 36dddcd4bdd7f0ec07e9144f5297409376b412db4885c8ff76ff6289716d66a1 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `"docker" "start" "-a" "36dddcd4bdd7f0ec07e9144f5297409376b412db4885c8ff76ff6289716d66a1"` [INFO] [stderr] Checking sgx_alloc v1.1.1 [INFO] [stderr] Compiling sgx_unwind v0.1.1 [INFO] [stderr] Compiling sgx_tstd v1.1.1 [INFO] [stderr] Checking sgx_trts v1.1.1 [INFO] [stderr] Compiling sgx_backtrace_sys v1.1.1 [INFO] [stderr] Compiling hashbrown_tstd v0.7.1 [INFO] [stderr] error[E0407]: method `alloc_zeroed` is not a member of trait `AllocRef` [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_alloc-1.1.1/src/system.rs:56:5 [INFO] [stderr] | [INFO] [stderr] 56 | / fn alloc_zeroed(&mut self, layout: Layout) [INFO] [stderr] 57 | | -> Result<(NonNull, usize), AllocErr> [INFO] [stderr] 58 | | { [INFO] [stderr] 59 | | if layout.size() == 0 { [INFO] [stderr] ... | [INFO] [stderr] 67 | | } [INFO] [stderr] 68 | | } [INFO] [stderr] | |_____^ not a member of trait `AllocRef` [INFO] [stderr] [INFO] [stderr] error[E0407]: method `realloc` is not a member of trait `AllocRef` [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_alloc-1.1.1/src/system.rs:78:5 [INFO] [stderr] | [INFO] [stderr] 78 | / unsafe fn realloc(&mut self, [INFO] [stderr] 79 | | ptr: core::ptr::NonNull, [INFO] [stderr] 80 | | layout: Layout, [INFO] [stderr] 81 | | new_size: usize) -> Result<(NonNull, usize), AllocErr> { [INFO] [stderr] ... | [INFO] [stderr] 93 | | } [INFO] [stderr] 94 | | } [INFO] [stderr] | |_____^ not a member of trait `AllocRef` [INFO] [stderr] [INFO] [stderr] error[E0050]: method `alloc` has 2 parameters but the declaration in trait `core::alloc::AllocRef::alloc` has 3 [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_alloc-1.1.1/src/system.rs:43:14 [INFO] [stderr] | [INFO] [stderr] 43 | fn alloc(&mut self, layout: Layout) -> Result<(NonNull, usize), AllocErr> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ expected 3 parameters, found 2 [INFO] [stderr] | [INFO] [stderr] = note: `alloc` from trait: `fn(&mut Self, core::alloc::Layout, core::alloc::AllocInit) -> core::result::Result` [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 2 arguments but 1 argument was supplied [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_alloc-1.1.1/src/system.rs:85:28 [INFO] [stderr] | [INFO] [stderr] 85 | (0, _) => self.alloc(Layout::from_size_align_unchecked(new_size, layout.align())), [INFO] [stderr] | ^^^^^ ----------------------------------------------------------- supplied 1 argument [INFO] [stderr] | | [INFO] [stderr] | expected 2 arguments [INFO] [stderr] [INFO] [stderr] error[E0308]: `match` arms have incompatible types [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_alloc-1.1.1/src/system.rs:85:23 [INFO] [stderr] | [INFO] [stderr] 83 | / match (layout.size(), new_size) { [INFO] [stderr] 84 | | (0, 0) => Ok((layout.dangling(), 0)), [INFO] [stderr] | | -------------------------- this is found to be of type `core::result::Result<(core::ptr::NonNull, usize), core::alloc::AllocErr>` [INFO] [stderr] 85 | | (0, _) => self.alloc(Layout::from_size_align_unchecked(new_size, layout.align())), [INFO] [stderr] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected tuple, found struct `core::alloc::MemoryBlock` [INFO] [stderr] 86 | | (_, 0) => { [INFO] [stderr] ... | [INFO] [stderr] 92 | | .map(|p| (p, new_size)), [INFO] [stderr] 93 | | } [INFO] [stderr] | |_________- `match` arms have incompatible types [INFO] [stderr] | [INFO] [stderr] = note: expected enum `core::result::Result<(core::ptr::NonNull, usize), _>` [INFO] [stderr] found enum `core::result::Result` [INFO] [stderr] [INFO] [stderr] error: aborting due to 5 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0050, E0061, E0308, E0407. [INFO] [stderr] For more information about an error, try `rustc --explain E0050`. [INFO] [stderr] error: could not compile `sgx_alloc`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: failed to run custom build command for `sgx_unwind v0.1.1` [INFO] [stderr] [INFO] [stderr] Caused by: [INFO] [stderr] process didn't exit successfully: `/opt/rustwide/target/debug/build/sgx_unwind-44e829a0169620fd/build-script-build` (exit code: 1) [INFO] [stderr] --- stdout [INFO] [stderr] cargo:rerun-if-changed=build.rs [INFO] [stderr] cargo:rustc-link-lib=gcc_s [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/elf32.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/elfxx.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/elfxx.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/se-libc-stubs.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/Makefile.am [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/dyn-register.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/_ReadULEB.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Ldyn-extract.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Lget_proc_info_by_ip.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Gdestroy_addr_space.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Lset_reg.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Lget_reg.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Gfind_dynamic_proc_info.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Gget_accessors.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/strerror.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Gset_fpreg.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Gset_reg.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/dyn-cancel.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Ldyn-remote.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Lget_fpreg.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Gget_proc_info_by_ip.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Lget_accessors.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Ldestroy_addr_space.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/flush_cache.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Gdyn-remote.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Lset_caching_policy.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Gset_caching_policy.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Lfind_dynamic_proc_info.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Gget_reg.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/dyn-info-list.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Lset_fpreg.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Lput_dynamic_unwind_info.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/init.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Gget_fpreg.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/_ReadSLEB.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Lget_proc_name.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Gdyn-extract.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/mempool.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/backtrace.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Gput_dynamic_unwind_info.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/mi/Gget_proc_name.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/elf64.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/elf64.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/is_fpreg.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Lregs.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Linit_remote.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Gos-linux.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Los-linux.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/getcontext.S [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/regname.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Gstash_frame.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Gget_proc_info.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Linit_local.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Ginit_local.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Lget_proc_info.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Lis_signal_frame.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Linit.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Lglobal.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Gcreate_addr_space.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Ginit_remote.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Gresume.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Ginit.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Gregs.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Gtrace.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Lget_save_loc.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Ltrace.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Lcreate_addr_space.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Los-freebsd.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Gglobal.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/longjmp.S [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/unwind_i.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Lresume.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/setcontext.S [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/offsets.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/init.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Lstash_frame.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Lstep.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Gos-freebsd.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Gstep.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/siglongjmp.S [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/Gget_save_loc.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/x86_64/ucontext_i.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/setjmp/sigsetjmp.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/setjmp/setjmp.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/setjmp/setjmp_i.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/setjmp/longjmp.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/setjmp/siglongjmp.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/se-iterate-phdr.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Gfind_unwind_table.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Gpe.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Gfind_proc_info-lsb.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/global.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Lfind_proc_info-lsb.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Lfind_unwind_table.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Gfde.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Gparser.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Lfde.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Lpe.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Lstep.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Gexpr.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Gstep.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Lparser.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/dwarf/Lexpr.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/elf32.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/os-linux.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/GetBSP.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/GetCFA.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/RaiseException.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/Resume_or_Rethrow.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/GetDataRelBase.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/ForcedUnwind.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/GetLanguageSpecificData.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/SetGR.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/GetIP.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/Backtrace.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/Resume.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/GetGR.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/GetIPInfo.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/SetIP.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/GetTextRelBase.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/FindEnclosingFunction.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/DeleteException.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/unwind-internal.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/unwind/GetRegionStart.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/src/os-linux.c [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/COPYING [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/TODO [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/Makefile.am [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/acinclude.m4 [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/LICENSE [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/NEWS [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/configure.in [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/ChangeLog [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/README [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/pthread_compat.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/libunwind_i.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/mempool.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/x86/jmpbuf.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/tdep-x86_64/libunwind_i.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/tdep-x86_64/dwarf-config.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/tdep-x86_64/jmpbuf.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/libunwind-common.h.in [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/tdep/dwarf-config.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/tdep/libunwind_i.h.in [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/tdep/jmpbuf.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/dwarf_i.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/libunwind.h.in [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/dwarf-eh.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/dwarf.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/remote.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/libunwind-dynamic.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/unwind.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/include/libunwind-x86_64.h [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/autogen-linux.sh [INFO] [stderr] cargo:rerun-if-changed=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/AUTHORS [INFO] [stderr] cargo:rustc-link-lib=static=unwind [INFO] [stderr] cargo:rustc-link-search=native=/opt/rustwide/target/debug/build/sgx_unwind-fdd32b024ee7ebe5/out/libunwind/src/.libs [INFO] [stderr] running: "sh" "/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/autogen-linux.sh" "--host=x86_64-unknown-linux-gnu" "--build=x86_64-unknown-linux-gnu" [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] command did not execute successfully: "sh" "/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/autogen-linux.sh" "--host=x86_64-unknown-linux-gnu" "--build=x86_64-unknown-linux-gnu" [INFO] [stderr] expected success, got: exit code: 1 [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] --- stderr [INFO] [stderr] + dirname /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind/autogen-linux.sh [INFO] [stderr] + srcdir=/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind [INFO] [stderr] + [ -z /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind ] [INFO] [stderr] + pwd [INFO] [stderr] + ORIGDIR=/opt/rustwide/target/debug/build/sgx_unwind-fdd32b024ee7ebe5/out/libunwind [INFO] [stderr] + cd /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/sgx_unwind-0.1.1/../sgx_unwind-0.1.1/libunwind [INFO] [stderr] + autoreconf -v --force --install [INFO] [stderr] autoreconf: Entering directory `.' [INFO] [stderr] autoreconf: configure.in: not using Gettext [INFO] [stderr] autoreconf: running: aclocal --force [INFO] [stderr] aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in' [INFO] [stderr] autom4te: cannot create autom4te.cache: No such file or directory [INFO] [stderr] aclocal: error: echo failed with exit status: 1 [INFO] [stderr] autoreconf: aclocal failed with exit status: 1 [INFO] [stderr] + exit 1 [INFO] [stderr] [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "36dddcd4bdd7f0ec07e9144f5297409376b412db4885c8ff76ff6289716d66a1"` [INFO] running `"docker" "rm" "-f" "36dddcd4bdd7f0ec07e9144f5297409376b412db4885c8ff76ff6289716d66a1"` [INFO] [stdout] 36dddcd4bdd7f0ec07e9144f5297409376b412db4885c8ff76ff6289716d66a1