Nikhil Benesch
Nikhil Benesch
I just published a crate called cargo-out-dir to crates.io, which can ease some of the frustration while we wait for this to stabilize. All it does is print out the...
Ugh, I just got bitten by this. Thanks for filing such a thorough issue about the problem space, @spl! I'd like to voice my support for doing something simple. A...
Or, in the short term, an escape hatch of reading `CMAKE_SYSTEM_NAME` and `CMAKE_SYSTEM_PROCESSOR` from the environment could at least ease the pain of this!
I spent a long time scratching my about this, and I've finally figured this out. I think it is best categorized as a "usage error", and not a true bug,...
As best as I can tell, the answer for `std::vector` (and `std::string`) is that there's no built-in way to do this. Various resources on the matter: * folly has a...
Here's a StackOverflow that addresses this directly: https://stackoverflow.com/a/61450370. The tl;dr is the idiom of reserving space in a `std::vector`, writing to it, and then hackily increasing the size of the...
I'm not @SergioBenitez, but I had the same need, so I put together https://github.com/MaterializeInc/homebrew-crosstools with updated GNU/Linux toolchains for both Intel and M1 Macs. I also wired everything up so...
Hrm, I got wedged trying to figure out what to do with `build_insource`: https://github.com/lu-zero/autotools-rs/blob/644cb0def78d13f73e6fea1b47b467ed89d38f32/src/lib.rs#L425-L426 That runs `./configure --prefix=BUILDDIR` and then runs `make install` on that, which ... well gosh, I...
#12222 fixed most of this. Looks like the remaining work item is to make `CREATE` statements create their objects in the first schema on the search path, rather than in...
Let me give a repro a shot. Cockroach started applying a maintenance update at the exact moment this crashed, so I'm going to try restarting PostgreSQL locally and seeing if...