2018-11-16 21:25:35 +01:00
|
|
|
CONFIG_SLAB_CANARY := true
|
2019-06-18 21:51:13 +02:00
|
|
|
CONFIG_EXTENDED_SIZE_CLASSES := true
|
2018-11-16 21:25:35 +01:00
|
|
|
|
2022-01-09 17:08:56 +01:00
|
|
|
ifneq ($(VARIANT),)
|
|
|
|
$(error testing non-default variants not yet supported)
|
|
|
|
endif
|
|
|
|
|
2018-11-16 21:25:35 +01:00
|
|
|
ifeq (,$(filter $(CONFIG_SLAB_CANARY),true false))
|
|
|
|
$(error CONFIG_SLAB_CANARY must be true or false)
|
|
|
|
endif
|
|
|
|
|
2019-04-30 22:54:58 +02:00
|
|
|
LDLIBS := -lpthread
|
|
|
|
|
2018-11-16 21:25:35 +01:00
|
|
|
CPPFLAGS += \
|
2019-06-18 21:51:13 +02:00
|
|
|
-DSLAB_CANARY=$(CONFIG_SLAB_CANARY) \
|
|
|
|
-DCONFIG_EXTENDED_SIZE_CLASSES=$(CONFIG_EXTENDED_SIZE_CLASSES)
|
2018-11-16 21:25:35 +01:00
|
|
|
|
2018-10-04 08:40:51 +02:00
|
|
|
EXECUTABLES := \
|
2019-04-07 02:49:52 +02:00
|
|
|
offset \
|
2019-04-30 22:47:06 +02:00
|
|
|
mallinfo \
|
2021-05-13 02:07:15 +02:00
|
|
|
mallinfo2 \
|
2019-04-30 22:54:58 +02:00
|
|
|
malloc_info \
|
2019-04-30 22:47:06 +02:00
|
|
|
large_array_growth
|
2018-10-04 08:40:51 +02:00
|
|
|
|
|
|
|
all: $(EXECUTABLES)
|
2020-03-31 01:36:11 +02:00
|
|
|
make -C simple-memory-corruption
|
2018-10-04 08:40:51 +02:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f $(EXECUTABLES)
|
2021-12-26 22:18:40 +01:00
|
|
|
make -C simple-memory-corruption clean
|