diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-06-02 15:30:01 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-06-02 15:30:01 +0200 |
commit | e04b47c8b1bd1c2bbd4958471ffaa5ccfffe25c3 (patch) | |
tree | 09997eab3034c0bbe345999ce81d828d75a97b4b /CHANGELOG.md | |
parent | 69c7f71b23cb99d78d6a1f098d5dee63c8bcc916 (diff) | |
download | justbuild-e04b47c8b1bd1c2bbd4958471ffaa5ccfffe25c3.tar.gz |
CHANGELOG: document fixes since 1.1.0 so far
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ddd7638b..b573a05c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,19 @@ A feature release on top of `1.1.0`, backwards compatible. left-over execution directories will eventually get cleaned up by garbage collection. +### Fixes + +- Removed potential uses of `malloc` between `fork` and `exec`. + This removes the risk of deadlocks on certain combinations of + `C++` standard library and `libc`. +- The link flags for the final linking now can be set via the + configuration variable `FINAL_LDFLAGS`; in particular, the stack + size can easily be adapted. The default stack size is now set to + 8M, removing an overflow on systems where the default stack size + was significantly lower. +- The man pages are now provided as markdown files, allowing to + potentially reduce the build dependencies to more standard ones. + ## Release `1.1.0` (2023-05-19) A feature release on top of `1.0.0`, backwards compatible. |