Skip to content

Commit 1c2412e

Browse files
dschoGit for Windows Build Agent
authored and
Git for Windows Build Agent
committed
max_tree_depth: lower it for clangarm64 on Windows
Just as in b64d78a (max_tree_depth: lower it for MSVC to avoid stack overflows, 2023-11-01), I encountered the same problem with the clang builds on Windows/ARM64. The symptom is an exit code 127 when t6700 tries to verify that `git archive big` fails. This exit code is reserved on Unix/Linux to mean "command not found". Unfortunately in this case, it is the fall-back chosen by Cygwin's `pinfo::status_exit()` method when encountering the NSTATUS `STATUS_STACK_OVERFLOW`, see https://github.com/cygwin/cygwin/blob/cygwin-3.6.1/winsup/cygwin/pinfo.cc#L171 I verified manually that the stack overflow always happens somewhere around tree depth 1403, therefore 1280 should be a safe bound in these instances. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 23a2e34 commit 1c2412e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

environment.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,21 @@ int max_allowed_tree_depth =
9191
* tree depth; This value seems to be low enough.
9292
*/
9393
1280;
94+
#else
95+
#if defined(GIT_WINDOWS_NATIVE) && defined(__clang__) && defined(__aarch64__)
96+
/*
97+
* Similar to Visual C, it seems that on Windows/ARM64 the clang-based
98+
* builds have a smaller stack space available. When running out of
99+
* that stack space, a `STATUS_STACK_OVERFLOW` is produced. When the
100+
* Git command was run from an MSYS2 Bash, this unfortunately results
101+
* in an exit code 127. Let's prevent that by lowering the maximal
102+
* tree depth; This value seems to be low enough.
103+
*/
104+
1280;
94105
#else
95106
2048;
96107
#endif
108+
#endif
97109

98110
#ifndef PROTECT_HFS_DEFAULT
99111
#define PROTECT_HFS_DEFAULT 0

0 commit comments

Comments
 (0)