https://github.com/mupq/pqm4
Tip revision: dd83f4831e2452d0534b914c23080f21c88f46b7 authored by Richard Petri on 20 July 2022, 07:54:20 UTC
Use atexit to register the destructor for gcc11
Use atexit to register the destructor for gcc11
Tip revision: dd83f48
tests.mk
ifeq ($(AIO),1)
elf/boardtest.elf: common/test.c $(LINKDEPS) $(CONFIG)
$(compiletest)
elf/aestest.elf: common/aestest.c $(LINKDEPS) $(CONFIG)
$(compiletest)
else
elf/boardtest.elf: $(call objs,common/test.c) $(LINKDEPS) $(CONFIG)
elf/aestest.elf: $(call objs,common/aestest.c) $(LINKDEPS) $(CONFIG)
endif
tests: elf/boardtest.elf elf/aestest.elf
tests-bin: bin/boardtest.bin bin/aestest.bin