summaryrefslogtreecommitdiffstats
path: root/build/has/aligned-alloc.c
Commit message (Collapse)AuthorAgeFilesLines
* alloc: Don't require size % align == 0Tavian Barnes2024-11-021-8/+0
| | | | | | | | | Allowing unaligned sizes will allow us to allocate aligned slabs with additional metadata in the tail without ballooning the allocation size for large alignments. Link: https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2244.htm#dr_460 Link: https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2072.htm
* build: Replace `make config` with a `./configure` scriptTavian Barnes2024-04-291-0/+8
This lets us do more traditional out-of-tree builds like $ ../path/to/bfs/configure $ make The .mk files are moved from ./config to ./build, mostly so that ./configure will auto-complete easily.