Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 418 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 418 Bytes

Arena Allocator

An arena/linear memory allocator built in C.

Requirements

Build

make build

# Build with AddressSanitizer (ASAN)
make build-asan

# Build a debug binary
make build-debug

Run

make run

# Run with AddressSanitizer (ASAN)
make run-asan

Debugging with lldb

make debug