Kristof Mattei

Results 42 comments of Kristof Mattei

```` [main] eval /etc/needrestart/needrestart.conf [main] needrestart v3.6 [main] running in root mode [Core] Using UI 'NeedRestart::UI::stdio'... [main] systemd detected [Core] #653 is a NeedRestart::Interp::Python [Python] #653: source=/usr/sbin/wsdd #

> @liske My knowledge of Perl is rather limited, if non-existent, but doesn't that line https://github.com/liske/needrestart/blob/280c1aeaff28a7f1ff1f38e7427e938a7e3579fd/perl/lib/NeedRestart.pm#L180 and digging through the other sources of the package mean that a process should...

Update: code checks the existence of the `/proc/$pid/root//usr/sbin/wsdd` to get its creation time, and then use that to see if it is before or after the change time of the...

Update: `/usr/sbin/wsdd` by default chroots into `/run/wsdd` which makes `/proc/$pid/root` to be empty, meaning needsrestart cannot find `/proc/$pid/root//usr/sbin/wsdd`. https://github.com/liske/needrestart/blob/280c1aeaff28a7f1ff1f38e7427e938a7e3579fd/ex/needrestart.conf#L180 actually shows the config for this. For me I have `$nrconf{skip_mapfiles}...

> > Update: `/usr/sbin/wsdd` by default chroots > > Nitpicking, but just to be clear: No, it does not. You have to ask for chroot via command line argument. Without...

> > The default wsdd.service from wsdd has the chroot param: https://github.com/christgau/wsdd/blob/4bec7c92f8afb70b9f7d1866797c4edb4121099c/etc/systemd/wsdd.service#L18 > > True. The service file from the Debian package does the same. I didn't realize you are...

> I can reproduce this as well. The issue is that the build.rs script compiles our generated C++ code and links it. This is the correct behavior to build the...

I created a repo with a repro: https://github.com/kristof-mattei/cxx-qt-lib-test As-is (with `src/lib.rs`) it gives the following error: ``` = note: init.cpp:5: error: undefined reference to 'qInitResources_qml_module_resources_qrc()' collect2: error: ld returned 1...

https://github.com/kristof-mattei/cxx-qt-lib-test The `build.rs` generates a single function that imports all plugins defined. Works on `cargo run` and `cargo test`

@LeonMatthesKDAB the `Q_IMPORT_PLUGIN` string occurs in your code base. That's where I got the inspiration from, as `Q_INIT_RESOURCES` generates the same lines. But there is a difference between runtime not...