1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/arduino: drop cpp feature dependency

Currently, the arduino module depends on the "cpp" feature. As AVR's
don't have libstdc++, they don't provide that feature, as otherwise all
cpp examples would break.  But the AVR does provide a cpp compiler and
thus the arduino module compiles just fine.

This comit removes the cpp dependency from arduino module.
This commit is contained in:
Kaspar Schleiser 2018-04-20 11:54:23 +02:00
parent 734944a56b
commit 594ead07db

View File

@ -534,7 +534,6 @@ endif
ifneq (,$(filter arduino,$(USEMODULE)))
FEATURES_REQUIRED += arduino
FEATURES_REQUIRED += cpp
USEMODULE += xtimer
endif