This is the logical continuation of [#12931] for _all_ `sock` implementations. [#12931]: https://github.com/RIOT-OS/RIOT/pull/12931
19 lines
462 B
Makefile
19 lines
462 B
Makefile
# lwIP's memory management doesn't seem to work on non 32-bit platforms at the
|
|
# moment.
|
|
FEATURES_REQUIRED += arch_32bit
|
|
|
|
DEFAULT_MODULE += auto_init_lwip
|
|
|
|
ifneq (,$(filter sock_async,$(USEMODULE)))
|
|
USEMODULE += lwip_sock_async
|
|
endif
|
|
ifneq (,$(filter sock_ip,$(USEMODULE)))
|
|
USEMODULE += lwip_sock_ip
|
|
endif
|
|
ifneq (,$(filter sock_tcp,$(USEMODULE)))
|
|
USEMODULE += lwip_sock_tcp
|
|
endif
|
|
ifneq (,$(filter sock_udp,$(USEMODULE)))
|
|
USEMODULE += lwip_sock_udp
|
|
endif
|