1 # SPDX-License-Identifier: GPL-2.0 2 3 # Memblock simulator requires AddressSanitizer 4 # packages installed 5 CFLAGS += -I. -I../../include -Wall -O2 -fsani 6 -fsanitize=undefined -D CONFIG_PHYS_ 7 LDFLAGS += -fsanitize=address -fsanitize=undef 8 TARGETS = main 9 TEST_OFILES = tests/alloc_nid_api.o tests/allo 10 tests/basic_api.o tests/comm 11 DEP_OFILES = memblock.o lib/slab.o mmzone.o sl 12 OFILES = main.o $(DEP_OFILES) $(TEST_OFILES) 13 EXTR_SRC = ../../../mm/memblock.c 14 15 ifeq ($(BUILD), 32) 16 CFLAGS += -m32 17 LDFLAGS += -m32 18 endif 19 20 # Process user parameters 21 include scripts/Makefile.include 22 23 main: $(OFILES) 24 25 $(OFILES): include 26 27 include: ../../../include/linux/memblock.h ../ 28 ../../include/asm/*.h 29 30 @mkdir -p linux 31 test -L linux/memblock.h || ln -s ../. 32 test -L asm/asm.h || ln -s ../../../ar 33 test -L asm/cmpxchg.h || ln -s ../../. 34 35 memblock.c: $(EXTR_SRC) 36 test -L memblock.c || ln -s $(EXTR_SRC 37 38 clean: 39 $(RM) $(TARGETS) $(OFILES) linux/membl 40 41 help: 42 @echo 'Memblock simulator' 43 @echo '' 44 @echo 'Available targets:' 45 @echo ' main - Build the 46 @echo ' clean - Remove gen 47 @echo '' 48 @echo 'Configuration:' 49 @echo ' make MEMBLOCK_DEBUG=1 - 50 @echo ' make NUMA=1 - 51 @echo ' make 32BIT_PHYS_ADDR_T=1 - 52 53 vpath %.c ../../lib 54 55 .PHONY: clean include help
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.