diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2023-05-31 14:29:22 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2023-05-31 18:13:43 +0200 |
commit | 9e45d1525b0fde12a08f7c376b5bf2c7bfbc9803 (patch) | |
tree | 2d0fd5e44999e7242fc22efaae1d8d25eb5ec59a /INSTALL.md | |
parent | ea4ebc8b7eda78d993d67f5fffbcf2eb19690899 (diff) | |
download | justbuild-9e45d1525b0fde12a08f7c376b5bf2c7bfbc9803.tar.gz |
Support FINAL_LDFLAGS variable for binaries
... and set default stack size to 8 MB.
Diffstat (limited to 'INSTALL.md')
-rw-r--r-- | INSTALL.md | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -22,7 +22,7 @@ specify `arm64` as the target architecture via the `-D` flag: just-mr build -D '{"TARGET_ARCH":"arm64"}' ``` -The following table descries the most important supported configuration +The following table describes the most important supported configuration variables. The full list can be obtained via `just-mr describe`. |Variable|Supported Values|Default Value for `just`| @@ -35,6 +35,10 @@ variables. The full list can be obtained via `just-mr describe`. | DEBUG | true, false | false | | BUILD_STATIC_BINARY | true, false | false | +Note that you can choose a different stack size for resulting binaries by +adding `"-Wl,-z,stack-size=<size-in-bytes>"` to variable `"FINAL_LDFLAGS"` +(which has to be a list of strings). + ## Bootstrapping `just` It is also possible to build `just` without having an older binary, |