I’m trying to build Redox with newest rustc 1.10.0-nightly, but I’m experiencing some troubles with fuse crate. Does anyone have the same problem or do you have any idea how to solve this?
This is output of make all
with RUST_BACKTRACE=1
Compiling fuse v0.2.7
error: failed to run custom build command for `fuse v0.2.7`
Process didn't exit successfully: `/home/user/redox/crates/redoxfs/target/debug/build/fuse-903ac6b64e7fdf04/build-script-build` (exit code: 101)
--- stderr
thread '<main>' panicked at 'called `Result::unwrap()` on an `Err` value: "`\"pkg-config\" \"--libs\" \"--cflags\" \"fuse\"` did not exit successfully: exit code: 1\n--- stdout\nPackage fuse was not found in the pkg-config search path.\nPerhaps you should add the directory containing `fuse.pc\'\nto the PKG_CONFIG_PATH environment variable\nNo package \'fuse\' found\n"', ../src/libcore/result.rs:785
stack backtrace:
1: 0x562962f18ed0 - std::sys::backtrace::tracing::imp::write::h9fb600083204ae7f
2: 0x562962f1f6fb - std::panicking::default_hook::_$u7b$$u7b$closure$u7d$$u7d$::hca543c34f11229ac
3: 0x562962f1f383 - std::panicking::default_hook::hc2c969e7453d080c
4: 0x562962f0ed6f - std::sys_common::unwind::begin_unwind_inner::h30e12d15ce2b2e25
5: 0x562962f10318 - std::sys_common::unwind::begin_unwind_fmt::hb2de8a9968d38523
6: 0x562962f18291 - rust_begin_unwind
7: 0x562962f559df - core::panicking::panic_fmt::h257ceb0aa351d801
8: 0x562962efb4d5 - core::result::unwrap_failed::hb1ced490f1c4ca85
at ../src/libcore/macros.rs:29
9: 0x562962efaaae - _<std..result..Result<T, E>>::unwrap::hb772e7d8964e902e
at ../src/libcore/result.rs:723
10: 0x562962ef9678 - build_script_build::main::he5071e1b00fcfe0e
at /home/user/.cargo/registry/src/github.com-88ac128001ac3a9a/fuse-0.2.7/build.rs:12
11: 0x562962f1efc4 - std::sys_common::unwind::try::try_fn::h04c0c89e4add6cc4
12: 0x562962f1821b - __rust_try
13: 0x562962f1ea0b - std::rt::lang_start::h61f4934e780b4dfc
14: 0x562962efb769 - main
15: 0x7f2afc25782f - __libc_start_main
16: 0x562962ef92e8 - _start
17: 0x0 - <unknown>
Makefile:544: recipe for target 'build/i386-unknown-redox/debug/filesystem.bin' failed
Is this a problem with rustc?
Thanks in advance for any ideas.