From 2f35bbf04669314aec75308c03aa020a267e9e64 Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Wed, 9 Aug 2023 00:51:30 -0700 Subject: [PATCH] Fix Windows stack size --- ape/ape.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ape/ape.S b/ape/ape.S index aff5c6727..f7052a275 100644 --- a/ape/ape.S +++ b/ape/ape.S @@ -1081,7 +1081,7 @@ ape_pe: .ascin "PE",4 .long 0 // Checksum .short v_ntsubsystem // Subsystem: 0=Neutral,2=GUI,3=Console .short v_ntdllchar // DllCharacteristics - .quad ape_stack_memsz2 // StackReserve + .quad 8 * 1024 * 1024 // StackReserve .quad 64 * 1024 // StackCommit .quad 0 // HeapReserve .quad 0 // HeapCommit