summaryrefslogtreecommitdiff
path: root/config.inc
blob: b499536f02044bbdf59c22207d408817c163f7a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; 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