command was: git clone --recursive https://github.com/intel/openvino-rs.git && cd openvino-rs/crates/openvino-sys LANG=C RUST_BACKTRACE=full LIBCLANG_PATH=/usr/lib/llvm/10/lib64/ cargo build -vv -j12 my rustc is 1.50.0 on amd64 linux from the build log: ``` /tmp/openvino-rs/crates/openvino-sys/upstream/inference-engine/thirdparty/ade/sources/ade/source/execution_engine.cpp: In member function 'std::unique_ptr<ade::Executable> ade::ExecutionEngine::createExecutable(const ade::Graph&)': /tmp/openvino-rs/crates/openvino-sys/upstream/inference-engine/thirdparty/ade/sources/ade/source/execution_engine.cpp:141:21: error: redundant move in return statement [-Werror=redundant-move] 141 | return std::move(ret); | ~~~~~~~~~^~~~~ /tmp/openvino-rs/crates/openvino-sys/upstream/inference-engine/thirdparty/ade/sources/ade/source/execution_engine.cpp:141:21: note: remove 'std::move' call ```