summaryrefslogtreecommitdiffstats
path: root/build
Commit message (Collapse)AuthorAgeFilesLines
* build: Save cc.sh build products to gen/HEADmainTavian Barnes8 days4-13/+8
|
* build: Generate config.mk after config.hTavian Barnes8 days2-5/+8
| | | | That way if ./configure fails, make will complain about it directly.
* configure: Bail out if CC doesn't work at allTavian Barnes11 days1-2/+10
|
* build: Rename CONFIG to CONFFLAGSTavian Barnes11 days1-1/+1
|
* build: Include CC in bfs --version outputTavian Barnes2024-06-131-0/+1
|
* build: Use exec "$@" rather than just "$@"Tavian Barnes2024-06-111-1/+1
| | | | This avoids extra error reporting from set -e.
* Revert "build: Add -Wmissing-variable-declarations"Tavian Barnes2024-06-081-1/+0
| | | | | | Turns out that flag was only added in GCC 14. This reverts commit 7cddd64b3131812b82feffe2deb311bf6ab9a262.
* build: Add -Wmissing-variable-declarationsTavian Barnes2024-06-081-0/+1
|
* Embed more configuration info in bfs --versionTavian Barnes2024-06-083-1/+18
|
* atomic: Fix RISC-V build with GCC < 14Tavian Barnes2024-06-062-0/+8
| | | | | | | | | | | | Prior to GCC 14.1, the __builtin_riscv_pause() can cause an error if the appropriate extension is not enabled in -march: /tmp/ccR1L1lA.s: Assembler messages: /tmp/ccR1L1lA.s:670: Error: unrecognized opcode `pause', extension `zihintpause' required Link: https://gcc.gnu.org/pipermail/gcc-patches/2023-August/626748.html Link: https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=c2d04dd659c499d8df19f68d0602ad4c7d7065c2 Link: https://buildd.debian.org/status/fetch.php?pkg=bfs&arch=riscv64&ver=3.3.1-1&stamp=1717488400&raw=0
* list: New SLIST_SPLICE() macroTavian Barnes2024-05-311-0/+1
|
* configure: Color the checkmarksTavian Barnes2024-05-241-2/+12
|
* build/deps: Fix _CPPFLAGS variable nameTavian Barnes2024-05-241-1/+1
|
* configure: Use --with/--without for librariesTavian Barnes2024-05-249-19/+15
|
* build: Simplify flags.mkTavian Barnes2024-05-211-64/+43
|
* build: Fix ubsan CFLAGS typoTavian Barnes2024-05-211-1/+1
|
* build: Allow flags.mk to override command line variablesTavian Barnes2024-05-213-29/+29
| | | | | | | | Previously, during something like ./configure LDFLAGS=..., any additions to LDFLAGS from the generated makefiles were ignored. I had thought that sub-make invocations would allow those variables to be overridden, but that is not the behaviour of make. So instead, set _LDFLAGS etc. in the generated files so that they don't conflict.
* prelude: Remove max_align_t polyfillTavian Barnes2024-05-202-9/+0
| | | | | | This has been fixed in Cosmopolitan. Link: https://github.com/jart/cosmopolitan/issues/944
* build: Remove unused configure testTavian Barnes2024-05-191-13/+0
|
* dir: Add support for posix_getdents()Tavian Barnes2024-05-173-0/+23
| | | | | | | | This will be added to the next POSIX standard, and is already implemented in musl. Link: https://www.austingroupbugs.net/view.php?id=697 Link: https://git.musl-libc.org/cgit/musl/commit/?id=1b0d48517f816e98f19111df82f32bfc1608ecec
* build: Add missing SPDX headersTavian Barnes2024-05-173-0/+9
|
* stat: Support __st_birthtim on OpenBSDTavian Barnes2024-05-162-0/+10
|
* sighook: New utilities for hooking signalsTavian Barnes2024-05-161-0/+2
| | | | This allows multiple hooks to be installed for a single signal.
* build: Sort generated headersTavian Barnes2024-05-081-4/+4
|
* build/has/getdents: Squelch warningsTavian Barnes2024-05-073-9/+6
|
* build: Check for 1- and 2-argument getmntent() variantsTavian Barnes2024-05-073-0/+21
|
* build: Add a check for getmntinfo()Tavian Barnes2024-05-072-0/+11
|
* build: Add checks for strtofflags() and string_to_flags()Tavian Barnes2024-05-073-0/+20
|
* xtime: Use the libc's timegm() if presentTavian Barnes2024-05-062-0/+10
|
* build: Don't look for -s inside VAR=val in $MAKEFLAGSTavian Barnes2024-05-031-0/+2
|
* build: Add some nice aliases to ./configureTavian Barnes2024-05-011-1/+1
|
* build: Listen to make -sTavian Barnes2024-04-308-48/+112
|
* build: Replace `make config` with a `./configure` scriptTavian Barnes2024-04-2949-0/+988
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.