hyperpom 0.1.2

AArch64 fuzzing library based on the Apple Silicon hypervisor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CC := gcc
OBJCOPY := objcopy

CFLAGS := -fPIC -fpie -ffreestanding -ffunction-sections  -fomit-frame-pointer \
		  -fno-exceptions -fno-unwind-tables

define build_test
	$(CC) $(CFLAGS) -I. -o $1 $1.c
	$(OBJCOPY) -O binary --strip-all $1
endef

.PHONY: simple_test cmp_unrolling

simple_test:
	$(call build_test, simple_test)

cmp_unrolling:
	$(call build_test, cmp_unrolling)