mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 18:52:44 +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
22 lines
562 B
Makefile
22 lines
562 B
Makefile
include ../Makefile.net_common
|
|
|
|
USEMODULE += gnrc_ipv6_router_default
|
|
USEMODULE += gnrc_sixlowpan_frag_minfwd
|
|
USEMODULE += gnrc_sixlowpan_iphc
|
|
USEMODULE += gnrc_ipv6_nib
|
|
USEMODULE += gnrc_netif
|
|
USEMODULE += embunit
|
|
USEMODULE += netdev_ieee802154
|
|
USEMODULE += netdev_test
|
|
|
|
CFLAGS += -DTEST_SUITES
|
|
|
|
INCLUDES += -I$(RIOTBASE)/sys/net/gnrc/pktbuf_static/include
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
ifndef CONFIG_GNRC_IPV6_NIB_NO_RTR_SOL
|
|
# disable router solicitations so they don't interfere with the tests
|
|
CFLAGS += -DCONFIG_GNRC_IPV6_NIB_NO_RTR_SOL=1
|
|
endif
|