twistedfall

Results 193 comments of twistedfall

That's a lot of undefined references even to the basic things, are the opencv so's getting linked at all? I'm not really familiar with this profiling workflow, can you please...

Can you please share the minimum code example that I can use to reproduce this issue?

I can confirm the issue, that's really weird indeed. It's reproducible using the repository version of OpenCV under Ubuntu 20.08, but I can't reproduce it on my local machine for...

Can you check if file `/usr/lib/ld.so.1` actually exists in the target system?

> undefined reference to `cv::ocl::PlatformInfo::versionMinor() const' Looks like OpenCL configuration mismatch, the module is enabled in the OpenCV headers, but the actual shared library is missing

Any chance you have 2 OpenCV installations and it picks up the headers from one, but shared libraries from another? If you do a `cargo clean` and then `cargo build...

The source of the build failure is: ``` "could not run executable `D:\\vcpkg\\installed\\x64-windows\\tools\\llvm`: Access is denied. (os error 5)"' ``` So I suppose something is not right with your user's...

Thanks for the detailed proposal! It might be a way forward indeed. What's your thoughts on the following? After calling `owner.into_read_only()` I currently see no way to go back to...

Well, first please provide the full build log as printed by `cargo build -vv`. Please make sure to do the `cargo clean` before that.

The build log you attached doesn't produce any error, can you please do the command with the required `--target`: `cargo build -vv --release --target=x86_64-unknown-linux-musl` (please don't forget `cargo clean` before...