Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | build: Make the config scripts POSIX-compliant | Tavian Barnes | 2024-04-17 | 1 | -1/+1 |
| | |||||
* | build: Refactor configuration | Tavian Barnes | 2024-04-16 | 1 | -336/+33 |
| | | | | | | We now use a recursive make invocation to do the work of `make config`. The new implementation is also compatible with GNU make 3.81 found on macOS. | ||||
* | build: Center [ CC ] / [ LD ] | Tavian Barnes | 2024-04-16 | 1 | -2/+2 |
| | |||||
* | distcheck: Run all the checks | Tavian Barnes | 2024-04-15 | 1 | -1/+1 |
| | | | | Oops. | ||||
* | build: Be quieter by default | Tavian Barnes | 2024-04-15 | 1 | -22/+74 |
| | |||||
* | build: Make distclean also clean the distcheck dirs | Tavian Barnes | 2024-04-15 | 1 | -9/+11 |
| | |||||
* | build: Show a nicer error if the user forgets to run make config | Tavian Barnes | 2024-04-15 | 1 | -2/+9 |
| | |||||
* | build: Remove unneeded USE_* defaults | Tavian Barnes | 2024-04-15 | 1 | -10/+1 |
| | |||||
* | build: Factor out vars.mk generation into a script | Tavian Barnes | 2024-04-10 | 1 | -34/+2 |
| | |||||
* | build: Run pkg-config with all packages at once | Tavian Barnes | 2024-04-10 | 1 | -55/+52 |
| | |||||
* | build: Add optional libselinux dependency | Tavian Barnes | 2024-04-10 | 1 | -1/+5 |
| | |||||
* | build: Add a separate configuration step | Tavian Barnes | 2024-04-09 | 1 | -0/+517 |
| | |||||
* | Rename Makefile to GNUmakefile | Raf Czlonka | 2023-07-20 | 1 | -331/+0 |
| | |||||
* | CFLAGS adjustment in Makefile | Jason Stewart | 2023-07-19 | 1 | -1/+1 |
| | | | | | `-flto` to `-flto=auto` to eliminate `using serial compilation of 3 LTRANS jobs` gcc warning see https://stackoverflow.com/questions/72218980/gcc-v12-1-warning-about-serial-compilation | ||||
* | Release 3.0.13.0.1 | Tavian Barnes | 2023-07-18 | 1 | -1/+1 |
| | |||||
* | build: Move some flags around | Tavian Barnes | 2023-07-13 | 1 | -4/+4 |
| | |||||
* | docs: Start preparing for the 3.0 release | Tavian Barnes | 2023-06-30 | 1 | -1/+1 |
| | |||||
* | build/tsan: Fix target_clones override | Tavian Barnes | 2023-06-24 | 1 | -1/+1 |
| | |||||
* | Unify macro naming conventions | Tavian Barnes | 2023-06-24 | 1 | -10/+10 |
| | | | | | In particular, macros that decide whether to use a particular API/ dependency should be spelled BFS_USE_*, and should be configurable. | ||||
* | alloc: New header for memory allocation utilities | Tavian Barnes | 2023-06-20 | 1 | -1/+2 |
| | |||||
* | build: Turn off ASLR for all sanitizers on FreeBSD | Tavian Barnes | 2023-06-20 | 1 | -1/+1 |
| | | | | | | | | Newer LLVM versions will reject every sanitizer runtime if ASLR is enabled. Link: https://reviews.llvm.org/D66582 Link: https://reviews.freebsd.org/D33933 | ||||
* | ioq: Implement an async I/O queue | Tavian Barnes | 2023-06-12 | 1 | -0/+1 |
| | |||||
* | lock: Add wrappers for POSIX synchronization primitives | Tavian Barnes | 2023-06-12 | 1 | -1/+2 |
| | |||||
* | build: Update to C17 | Tavian Barnes | 2023-06-12 | 1 | -1/+1 |
| | | | | This lets us avoid ATOMIC_VAR_INIT(). | ||||
* | build: Add tsan to distcheck | Tavian Barnes | 2023-06-12 | 1 | -0/+4 |
| | |||||
* | build: Error on implicit function declarations | Tavian Barnes | 2023-05-18 | 1 | -0/+1 |
| | |||||
* | bit: Rename int.h to bit.h | Tavian Barnes | 2023-05-18 | 1 | -1/+1 |
| | |||||
* | build: Fix test utility compilation | Tavian Barnes | 2023-05-16 | 1 | -2/+4 |
| | |||||
* | int: Backport C23's _WIDTH macros | Tavian Barnes | 2023-05-16 | 1 | -1/+1 |
| | |||||
* | build: Make the tests a little less repetitive | Tavian Barnes | 2023-05-16 | 1 | -18/+16 |
| | |||||
* | Let musl builds use getdents64() | Tavian Barnes | 2023-05-03 | 1 | -1/+2 |
| | | | | | | Glibc exposes a different struct dirent and dirent64, while on musl they are the same. But musl needs _LARGEFILE64_SOURCE to expose the *64() aliases. | ||||
* | build: Fix tsan | Tavian Barnes | 2023-04-12 | 1 | -33/+39 |
| | |||||
* | list: Use macros instead of type-erased lists | Tavian Barnes | 2023-03-31 | 1 | -1/+0 |
| | |||||
* | list: New generic linked list API | Tavian Barnes | 2023-03-29 | 1 | -0/+1 |
| | |||||
* | Release 2.6.32.6.3 | Tavian Barnes | 2023-01-31 | 1 | -1/+1 |
| | |||||
* | Replace license boilerplate with SPDX tags | Tavian Barnes | 2023-01-25 | 1 | -15/+2 |
| | | | | | | | And while I'm at it, remove years from copyright declarations. Link: https://spdx.dev/about/ Link: https://daniel.haxx.se/blog/2023/01/08/copyright-without-years/ | ||||
* | bfstd: New wrappers for dirname()/basename() | Tavian Barnes | 2023-01-19 | 1 | -4/+9 |
| | |||||
* | build: New $(LIBBFS) variable shared between the main binary and tests | Tavian Barnes | 2023-01-19 | 1 | -40/+44 |
| | |||||
* | Turn on more aggressive format string warnings | Tavian Barnes | 2022-12-09 | 1 | -2/+3 |
| | |||||
* | distcheck: Add ubsan to msan build | Tavian Barnes | 2022-11-11 | 1 | -1/+1 |
| | |||||
* | tests/xtouch: New utility | Tavian Barnes | 2022-11-07 | 1 | -2/+8 |
| | | | | | | POSIX touch(1) doesn't include the -h option, and indeed OpenBSD doesn't implement it. Making our own utility also lets us add some handy extensions like -p (create parents) and -M (set permissions). | ||||
* | bfstd: Rename from util and reorganize it | Tavian Barnes | 2022-11-06 | 1 | -1/+1 |
| | |||||
* | util: Get rid of BFS_HAS_INCLUDE() wrapper for __has_include() | Tavian Barnes | 2022-11-06 | 1 | -3/+3 |
| | | | | | | | | | Since __has_include() needs special preprocessing rules (e.g. not expanding `linux` in `__has_include(<linux/stat.h>)`, macros that expand to __has_include() do not necessarily behave correctly. Instead, we have to directly test `#if __has_include(...)`. See https://bugs.llvm.org/show_bug.cgi?id=37990 for more details. | ||||
* | Release 2.6.22.6.2 | Tavian Barnes | 2022-10-21 | 1 | -1/+1 |
| | |||||
* | Release 2.6.12.6.1 | Tavian Barnes | 2022-07-05 | 1 | -1/+1 |
| | |||||
* | Add fish completion | Gustavo Costa | 2022-06-14 | 1 | -0/+3 |
| | |||||
* | Makefile: Pass -std=gnu11 for gcov builds | Tavian Barnes | 2022-05-31 | 1 | -0/+2 |
| | | | | | | | Otherwise, libgcov doesn't intercept functions like fork() and exec(), so we lose some coverage data in xspawn.c. Link: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82457 | ||||
* | Release 2.62.6 | Tavian Barnes | 2022-05-21 | 1 | -1/+1 |
| | |||||
* | Makefile: Add a BUILDDIR variable for out-of-tree builds | Tavian Barnes | 2022-05-20 | 1 | -51/+55 |
| | | | | bfs can now be built from a read-only source tree. | ||||
* | Makefile: Split build into bin and obj directories | Tavian Barnes | 2022-05-16 | 1 | -54/+52 |
| | | | | | This also moves the main binary from ./bfs to ./bin/bfs, and ./tests.sh to ./tests/tests.sh, with the goal of keeping the repository root clean. |