Charlie Barto

Results 96 comments of Charlie Barto

that sounds fine to me as well. Making the tag long like that also decreases the likelihood people will consider that yet another official product version.

That is the intent. Currently you should be able to pull this repo and build something functionally identical to the "desktop" flavors. So yes. that is the intent, and it...

also it seems that running src/nimble1.exe install from the git repo fails (hangs) if nimble is already installed

I'm seeing this on 1.17 without katello

I have a rpm spec file sitting around if that's helpful. Do yourself a favor and install ccache before starting this one :D

There are no parameter quoting rules on windows. Parameters are always a single string with all parameters. The CRT splits them up again in userspace for compatibility with C programs.

yes, the quoting rules described above are properties of the CRT, if you don't use the CRT you don't get those rules and just get one big parameter string (it's...

yeah. Even a function in windows would be easier than the "real" fix of getting an actual new syscall to do it. (instead of the current easiest syscall which is...

Yeah, the whole point of fstreams (or FILE*/stdio.h) is to get userspace buffering. It's pretty common to make iostreams a wrapper around cstdio (in fact it used to be libstdcpp...

I've reproduced this bug, thanks for the easy to run (and easy to get) reproduction case.