mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 09:52:45 +01:00
7a1c099e7b
Fixed compilation errors. Mostly DEBUG/printf formatting and void pointer casting. Other changes are: * net/gnrc_sixlowpan_frag_*: Generalized packet size calculation * cpu/native_backtrace: Reduced required backtrace size to 3 for 64-bit * periph/flashpage: Simplified test * unittests/tests-pktbuf: Generalized alignment * sys/architecture: Extended test for 64-bit
15 lines
496 B
Makefile
15 lines
496 B
Makefile
include ../Makefile.cpu_common
|
|
|
|
USEMODULE += backtrace
|
|
|
|
BOARD_WHITELIST := native
|
|
|
|
# Tests if native returns a backtrace of size three.
|
|
# The following function should be included in the backtrace:
|
|
# `main`/`main_trampoline`/ return to a user context function (e.g. `makecontext`)
|
|
# Depending on the implementation of the ucontext functions, the backtrace size
|
|
# may be longer, but this test only checks if it is at least three.
|
|
CFLAGS += -DBACKTRACE_SIZE=3
|
|
|
|
include $(RIOTBASE)/Makefile.include
|