Enrico Scholz
Enrico Scholz
Some additional wishes (from #9306): - allow to include multiple files ```toml include = "foo.toml" include = "bar.toml" include = "conf.d/*.toml" ``` - allow to ignore missing files; e.g. either...
- my main reason for this feature is local customization. E.g. I want `.cargo/config` as part of the project in git, but local setup (e.g. for `build.target-dir`) should be possible...
>> This setup must be optional (e.g. no warnings when included files are not existing). > Why must it produce no warnings? Because the setup is not in git (it...
I think, I addressed all the issues. I am using it in an OpenEmbedded based project: - see https://gitlab.com/ensc-groups/bpi-router for toplevel project - the SELinux related changes are in https://gitlab.com/ensc-groups/bpi-router/de.ensc.bpi-router/tree/master/meta-core/recipes-selinux/dropbear...
I get it to build with ```diff Index: git/CMakeLists.txt =================================================================== --- git.orig/CMakeLists.txt +++ git/CMakeLists.txt @@ -164,7 +164,7 @@ else() endif() message( STATUS "Using boost version: ${VSOMEIP_BOOST_VERSION}" ) -if (${VSOMEIP_BOOST_VERSION} GREATER...
My use case for unix fds are CI tests: Instead of listening on tcp sockets and implementing ways to find free port numbers, I use unix sockets. Then, I can...
I am seeing a similar behaviour; `epoll_wait()` does not return although data is available. Smells like a linux kernel bug with edge triggered epoll (here: kernel 5.18.13). E.g. ``` 17:07:34.032095...
my problem seems to be caused by slirp4netns (rootless containers, https://github.com/rootless-containers/slirp4netns/issues/302)
@mars1024 my problem is that I want to comment parts of the configuration file (for documentation purposes or to disable some option temporarily).
What is the current recommendation to get the final output name? In my use case, the build consists of two phases: 1. build the rust binary (`cargo build`) 2. finalize...