Thomas Otto

Results 49 comments of Thomas Otto

> `winapi` -> `windows-sys` Both crates work fine, I added a commit which uses `windows-sys` instead. > Separate from that, ripgrep used to have handling like this, but it ended...

Using the (existing) cache is the practical approach since it would not require adding more low-level linux syscalls.

> nitpick: please don't use `auto`, it makes code unnecessarily hard to read. [..] shorter To bikeshed a bit, `auto x = ...` when introducing a new variable makes it...

FWIW, I can now build a Descent3 binary on Debian 12 with a few patches.

The comment in `snd8to16.h` still has the original generation algorithm, and using it with `std::clamp()` like this recreate_snd8to16.cpp ```c++ #include #include #include #include #include int main(void) { signed int snd_8to16[256];...

Release / Debug in cmake also adds `-g` or `-O` flags on Linux, even `-O3` at the moment. Some warnings are only triggered on a certain optimization level. But it...

Yes, publishing 32-bit Linux builds makes no sense. If 32-bit Windows msvc builds stick around it _might_ be helpful for Linux devs to have 32-bit clang/gcc targets (which can also...

Indeed, also see [#522](https://github.com/dandavison/delta/issues/522#issuecomment-779478726).

PR #1205 would address that, but is this use case that common?