Emmanuel Pacaud
Emmanuel Pacaud
Hi, Does arv-camera-test work just after a camera power cycling ?
Hi Roger, Thanks for the report. Could you checkout this branch: https://github.com/AravisProject/aravis/tree/issue/492%2Fcheck-stream-enable And attach the output of `arv-camera-test -d all:3` before and after spinview please ?
Thanks for the informations, but the output is to much truncated to be really useful. Unfortunately, I did not spot anything obvious in what you sent. The last thing we...
Hi, The point of cc.get_supported_arguments is to filter the options to the one actually supported by the compiler. Which means -Wenum-conversion should not be passed to gcc if it is...
Unless I have misunderstood crossroad, you are not using meson cross compilation support. I was asking because if meson cross compilation is used, there is a distinction in meson between...
Did you try to only add '-Wenum-conversion' if the build is native ?
What I'm proposing is different: ```meson if not meson.is_cross_build() warning_c_args += '-Wenum-conversion` endif ```
Hi, ``` pkgconfig = '/usr/bin/pkg-config' ``` Isn't there a pkg-config in `/opt/Xilinx` ? If so, I guess you should use this one.
It looks like there is no need to use a cross compilation specific pkg-config. Looking at meson documentation, you should use at least meson 0.54, and use `pkg_config_libdir` and `sysroot`...
``` system = 'linux' cpu_family = 'aarch64' cpu = 'aarch64' endian = 'little' ``` You have said you are compiling on an x86 machine. Is that the right declaration for...