Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Prefer ./configure --enable-release to RELEASE=y | Tavian Barnes | 2024-05-02 | 2 | -3/+3 | |
| | ||||||
* | build: Add some nice aliases to ./configure | Tavian Barnes | 2024-05-01 | 6 | -138/+221 | |
| | ||||||
* | build: Listen to make -s | Tavian Barnes | 2024-04-30 | 10 | -55/+115 | |
| | ||||||
* | build: Replace `make config` with a `./configure` script | Tavian Barnes | 2024-04-29 | 63 | -387/+445 | |
| | | | | | | | | | | 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. | |||||
* | bench: Get rid of stray ls | Tavian Barnes | 2024-04-27 | 1 | -1/+0 | |
| | ||||||
* | config: Just use NOT to implement NOR | Tavian Barnes | 2024-04-26 | 2 | -19/+4 | |
| | ||||||
* | config: Move .c files into config/{use,has} subdirectories | Tavian Barnes | 2024-04-26 | 43 | -68/+70 | |
| | ||||||
* | bench: Run make config when building | Tavian Barnes | 2024-04-25 | 1 | -2/+9 | |
| | ||||||
* | config: Add BFS_USE_LIB* to config.h instead of CPPFLAGS | Tavian Barnes | 2024-04-25 | 9 | -75/+50 | |
| | ||||||
* | ioq: Fix uninitialized values in ioq_create() cleanup path | Tavian Barnes | 2024-04-24 | 1 | -4/+1 | |
| | | | | | | | | I switched from ZALLOC_FLEX() to ALLOC_FLEX() in hopes that msan would catch uninitialized values in ioq_thread_create(), but in doing so, forgot to initialize all fields before the first goto fail. Fixes: f64f76b ("ioq: Copy ring_ops from the previous thread") | |||||
* | printf: Check dynamic format strings more carefully | Tavian Barnes | 2024-04-24 | 2 | -41/+48 | |
| | ||||||
* | printf: Refactor %y/%Y implementation | Tavian Barnes | 2024-04-24 | 3 | -59/+53 | |
| | ||||||
* | ctx: Escape paths when reporting errors in bfs_ctx_free() | Tavian Barnes | 2024-04-24 | 1 | -1/+1 | |
| | ||||||
* | opt: Add missing NULL check in visit_shallow() | Tavian Barnes | 2024-04-24 | 1 | -1/+5 | |
| | | | | | visit_shallow() should propagate NULL, but look_up_visitor() dereferences expr to know which visitor to return. | |||||
* | dstring: Add missing va_end() to dstrvcatf() error path | Tavian Barnes | 2024-04-24 | 1 | -0/+1 | |
| | ||||||
* | eval: Plug memory leak if bfs_opendir() fails | Tavian Barnes | 2024-04-24 | 7 | -18/+32 | |
| | ||||||
* | build(deps): bump codecov/codecov-action from 3 to 4 | dependabot[bot] | 2024-04-22 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> | |||||
* | Enable Dependabot for GitHub Actions | Tavian Barnes | 2024-04-22 | 1 | -0/+6 | |
| | ||||||
* | ci/netbsd: Use cross-platform-actions | Tavian Barnes | 2024-04-22 | 1 | -16/+8 | |
| | ||||||
* | ci/openbsd: Use cross-platform-actions | Tavian Barnes | 2024-04-22 | 1 | -14/+8 | |
| | ||||||
* | ci/freebsd: Use cross-platform-actions | Tavian Barnes | 2024-04-22 | 1 | -14/+8 | |
| | ||||||
* | ci/codeql: Exclude some alerts | Tavian Barnes | 2024-04-22 | 2 | -1/+14 | |
| | | | | And try not to analyze config/*.c | |||||
* | fsade: Implement ACL detection on Illumos | Tavian Barnes | 2024-04-22 | 6 | -13/+32 | |
| | ||||||
* | config: Check for acl_get_file() | Tavian Barnes | 2024-04-22 | 4 | -8/+10 | |
| | ||||||
* | fsade: Simplify BFS_CAN_CHECK_CAPABILITIES | Tavian Barnes | 2024-04-22 | 2 | -13/+1 | |
| | ||||||
* | config: Check for acl_get_{entry,tag_type}() | Tavian Barnes | 2024-04-22 | 4 | -12/+40 | |
| | ||||||
* | config: Check for extattr_{get,list}_{file,link}() | Tavian Barnes | 2024-04-22 | 7 | -11/+97 | |
| | | | | This lets us implement -xattr on DragonFly BSD. | |||||
* | config: Check for max_align_t | Tavian Barnes | 2024-04-19 | 3 | -4/+24 | |
| | ||||||
* | config: Check for aligned_alloc() | Tavian Barnes | 2024-04-19 | 3 | -3/+12 | |
| | ||||||
* | config: Check for struct stat::st_flags | Tavian Barnes | 2024-04-19 | 3 | -1/+11 | |
| | ||||||
* | config: Check for struct stat::st_{a,c,m,birth}{tim,timespec} | Tavian Barnes | 2024-04-19 | 8 | -11/+70 | |
| | ||||||
* | config: Check for struct tm::tm_gmtoff | Tavian Barnes | 2024-04-19 | 3 | -1/+11 | |
| | ||||||
* | config: Check for fdclosedir() | Tavian Barnes | 2024-04-19 | 4 | -2/+11 | |
| | ||||||
* | config: Check for strerror_[lr]() | Tavian Barnes | 2024-04-19 | 6 | -23/+67 | |
| | ||||||
* | config: Check for pipe2() | Tavian Barnes | 2024-04-19 | 3 | -1/+12 | |
| | ||||||
* | config: Check for statx() | Tavian Barnes | 2024-04-19 | 5 | -9/+31 | |
| | ||||||
* | config: Check for acl_is_trivial_np() | Tavian Barnes | 2024-04-19 | 3 | -2/+14 | |
| | ||||||
* | config: Check for confstr() | Tavian Barnes | 2024-04-19 | 3 | -5/+15 | |
| | ||||||
* | config: Check for getdents{,64}() | Tavian Barnes | 2024-04-19 | 7 | -9/+45 | |
| | ||||||
* | config: Check for posix_spawn_file_actions_addfchdir{,_np}() | Tavian Barnes | 2024-04-19 | 5 | -22/+32 | |
| | ||||||
* | config: Check for program_invocation_short_name | Tavian Barnes | 2024-04-19 | 10 | -6/+96 | |
| | | | | | | This lets us pick it up on musl too, since there's no __MUSL__ macro. Link: https://wiki.musl-libc.org/faq#Q:-Why-is-there-no-%3Ccode%3E__MUSL__%3C/code%3E-macro? | |||||
* | config: Test-compile packages even if pkg-config says they exist | Tavian Barnes | 2024-04-19 | 2 | -55/+55 | |
| | | | | This fixes `make config CC=musl-gcc`, for example. | |||||
* | config: Add missing copyright headers | Tavian Barnes | 2024-04-19 | 5 | -0/+15 | |
| | | | | | They're probably too trivial to be copyrightable, but might as well include the SPDX tags for consistency anyway. | |||||
* | Rename config.h to prelude.h | Tavian Barnes | 2024-04-19 | 51 | -54/+54 | |
| | ||||||
* | tests: Add ../src to the include path | Tavian Barnes | 2024-04-19 | 12 | -36/+37 | |
| | ||||||
* | config: Use ✔/✘ rather than [y]/[n] | Tavian Barnes | 2024-04-19 | 1 | -2/+2 | |
| | ||||||
* | config: Remove unused ${ARCH} variable | Tavian Barnes | 2024-04-19 | 1 | -1/+0 | |
| | ||||||
* | config: Remove explicit -MF from DEPFLAGS | Tavian Barnes | 2024-04-19 | 1 | -1/+1 | |
| | | | | We use the default name anyway. | |||||
* | config: Fix ${SAN} on BSD make | Tavian Barnes | 2024-04-19 | 1 | -1/+2 | |
| | | | | | | This seems to have hit some BSD make limitation, making it set `SAN := y` unconditionally for some reason. Breaking up the expression fixes it. | |||||
* | config: Don't build config tests with -o /dev/null | Tavian Barnes | 2024-04-19 | 1 | -2/+8 | |
| | | | | | | | | | macOS doesn't like it, complaining that error: cannot parse the debug map for '/dev/null': The file was not recognized as a valid object file clang: error: dsymutil command failed with exit code 1 (use -v to see invocation) Use a temporary file instead. |