summaryrefslogtreecommitdiffstats
path: root/config/cc.sh
Commit message (Collapse)AuthorAgeFilesLines
* build: Replace `make config` with a `./configure` scriptTavian Barnes2024-04-291-16/+0
| | | | | | | | | | 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.
* config: Don't build config tests with -o /dev/nullTavian Barnes2024-04-191-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.
* build: Make the config scripts POSIX-compliantTavian Barnes2024-04-171-1/+1
|
* build: Refactor configurationTavian Barnes2024-04-161-1/+1
| | | | | | 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: Run pkg-config with all packages at onceTavian Barnes2024-04-101-7/+1
|
* config/cc.sh: Pass all the flags when running the compilerTavian Barnes2024-04-101-4/+8
|
* build: Add a separate configuration stepTavian Barnes2024-04-091-0/+12