Robert Scott

Results 109 comments of Robert Scott

Updated, take another look. Usable as "Cell memory - more" in london.

If you're concerned about ABI stability, would you consider an option that allowed linking with a "system" static `mimalloc`? This way at least the headers would match the binary version...

The bindings would only have to take into account API changes though, which are far less frequent and usually more intentional than ABI changes.

It's actually easier and using our own tooling, but it's still more verbose and fragile compared to e.g. `openssl-sys`'s `OPENSSL_NO_VENDOR`.

Fragile from _our_ point of view. It's fair for us to assume that a flag like `OPENSSL_NO_VENDOR` is supported and tested, whereas I suspect dropping in and overriding a build...

This has bitten us too. It looks like there are a lot of places in kombu where `print` is used instead of a `logger`, and it makes it impossible to...

I've also come across this, in my case it was extra puzzling because the path in question (a `.drv`) didn't even have any **referrers** as such, it was because of...

On a side note, my guess would be that if you also have `keep-outputs` enabled, the two would form reference loops that would only be manually removable by identifying the...

> Why do you go out of your way to "unvendor"? What do you get from it other that doing a lot of work and possibly breaking stuff? :-) Your...