| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
This completes the workaround for bfs_spawn() hanging on FreeBSD with
ASan enabled.
Link: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=280318
|
| |
|
|
|
|
| |
Use it to detect -MD -MP support.
|
|
|
|
|
|
| |
Turns out that flag was only added in GCC 14.
This reverts commit 7cddd64b3131812b82feffe2deb311bf6ab9a262.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
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.
|