Results 126 comments of Michael Eisel

Funnily enough, I just ran into that issue independently today, of ints that are too large causing errors. I would be fine with treating them as doubles, personally, although I'm...

+1 for this. Uber, Lyft, Spotify, Pinterest, and Snapchat are all either on Bazel or actively migrating to it. Although there are a few big apps still using Buck, going...

The reality is that they often don't. It also breaks any scripts that don't remember to put quotes around a path, any time someone copy-pastes into the shell without any...

It appears that dyld interposing doesn't work for anything besides `pthread_create` (if you run with `DYLD_PRINT_INTERPOSING=1` you can see what I mean). It seems like there are internally defined functions...

But just FYI, here is how I was able to replace the allocator and get it working reasonably well: https://github.com/michaeleisel/jemalloc/blob/master/src/zone.c . This is in turn based on the address sanitizer's...

Yes, the same workaround, and one which I want to avoid