Lutz Justen
Lutz Justen
Right now, it's not, but it wouldn't be hard to do, at least for cdc_rsync. The code is largely cross-platform, except for a few things that are not: - The...
I imagine it might not be very hard to do that in principle. We actually used librsync (https://github.com/librsync/librsync) in the first incarnation of this tool, and switched to CDC later....
cdc_rsync doesn't use the file watcher, that's used by cdc_stream only. If you build the //cdc_rsync target only, you shouldn't see this error. However, it still won't build. The process...
The status is, the code is in review. I expect it to land next week. My reviewer is currently on vacation. > If the support comes, would it work like...
I hacked together a release build that contains the changes. I tested it to a local Docker container and it worked. Currently, I only have one Windows machine, so I...
Sorry for the delay, we had some distractions here lately. For local Windows syncing, i.e. copying files locally, you would just remove the user@host, e.g. ``` cdc_rsync C:\path\to\source\* C:\path\to\dest -rv...
Hi, this error indicates that one of the third-party dependencies we're using, Google Protobuf, does not compile. It's complaining that the build target for main.cc (which is this: https://github.com/protocolbuffers/protobuf/blob/main/src/google/protobuf/compiler/BUILD.bazel#L107) does...
In Visual Studio we add custom include directories in project files, so http archives can be made discoverable, and Intellisense works. It has a small caveat that VS Intellisense doesn't...
Another issue with submodules is that it seems to make git operations like git status very slow, probably because it looks into the submodules as well.
This is doable, but requires a medium amount of work. Which ones are you interested in? Bazel is able to cross-compile for other platforms, but requires a properly configured toolchain....