mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[simulator] Increase stack size in debug mode
This way we can try the tests in DEBUG mode
This commit is contained in:
committed by
EmilieNumworks
parent
5c070355ad
commit
cfdc6344bf
@@ -14,7 +14,11 @@
|
||||
#endif
|
||||
|
||||
constexpr int kHeapSize = 131072;
|
||||
#if DEBUG
|
||||
constexpr int kStackSize = 32768*2; // In DEBUG mode, we increase the stack to be able to pass the tests
|
||||
#else
|
||||
constexpr int kStackSize = 32768;
|
||||
#endif
|
||||
|
||||
char heap[kHeapSize];
|
||||
extern "C" {
|
||||
|
||||
Reference in New Issue
Block a user