mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-29 03:00:24 +00:00
b7be1862a3
makefile: allow changing stack/linear heap size without requiring a clean.
13 lines
252 B
C
13 lines
252 B
C
|
|
|
|
#ifndef CTR_STACK_SIZE
|
|
#define CTR_STACK_SIZE 0x100000
|
|
#endif
|
|
|
|
#ifndef CTR_LINEAR_HEAP_SIZE
|
|
#define CTR_LINEAR_HEAP_SIZE 0x600000
|
|
#endif
|
|
|
|
int __stacksize__ = CTR_STACK_SIZE;
|
|
unsigned int linear_heap_size = CTR_LINEAR_HEAP_SIZE;
|