| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2026-04-06 | Make the project build with Microsoft's broken C compiler. | Sebastiano Tronto | 1 | -2/+2 | |
| MSVC is not fully C11-compliant, even when compiling with /std:c11. Some changes were needed to make the codebase compatible. Notably, the notation a[static N] and a[n] for function parameters of array type is not supported, so that had to be hidden behind a macro. Atomic types are also an experimental feature, apparently, but at least they work with the correct compiler flag. One thing that MSVC does well, however, is warning on integer conversions on /W4 level. I am not sure if Clang and GCC have something similar, so I took this chance to fix some of these. | |||||
| 2026-03-01 | Improve Windows build support. | Sebastiano Tronto | 1 | -23/+63 | |
| - Use multithreading (works with a sufficiently recent version of the Microsoft developer tools / C SDK). - Detect CPU architecture and use AVX2 or NEON when appropriate. - Automatically detect python installation path. | |||||
| 2025-08-12 | Some generic fixes, mainly for building on Windows | Sebastiano Tronto | 1 | -2/+2 | |
| 2025-08-11 | Wrapped pthread use in custom API | Sebastiano Tronto | 1 | -0/+37 | |
