From 594ead07dba2a5b957a921c0ea486890d164aa3d Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser <kaspar@schleiser.de> Date: Fri, 20 Apr 2018 11:54:23 +0200 Subject: [PATCH] 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. --- Makefile.dep | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile.dep b/Makefile.dep index 3c9a0a1a0d..fe41873223 100644 --- a/Makefile.dep +++ b/Makefile.dep @@ -534,7 +534,6 @@ endif ifneq (,$(filter arduino,$(USEMODULE))) FEATURES_REQUIRED += arduino - FEATURES_REQUIRED += cpp USEMODULE += xtimer endif -- GitLab