mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-10-01 01:36:01 -04:00
350d0e5fd2
Android Q uses the mallinfo implementation in the ART GC:c220f98180
1575267302
18 lines
289 B
Makefile
18 lines
289 B
Makefile
CONFIG_SLAB_CANARY := true
|
|
|
|
ifeq (,$(filter $(CONFIG_SLAB_CANARY),true false))
|
|
$(error CONFIG_SLAB_CANARY must be true or false)
|
|
endif
|
|
|
|
CPPFLAGS += \
|
|
-DSLAB_CANARY=$(CONFIG_SLAB_CANARY)
|
|
|
|
EXECUTABLES := \
|
|
offset \
|
|
mallinfo
|
|
|
|
all: $(EXECUTABLES)
|
|
|
|
clean:
|
|
rm -f $(EXECUTABLES)
|