; stack size in bytes. bottom of stack must be 16 byte aligned, therefore ; STACK_CAPACITY must be a multiple of 16 STACK_CAPACITY = 64*4096 ; heap allocation implementation. supported options are: ; - posix_memalign (POSIX.1-2001) ; - aligned_alloc (C11) ; - mmap (linux) MALLOC equ aligned_alloc ; enable indirect branch tracking support IBT_ENABLE = 1