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

sys: remove -std=c++11

This commit is contained in:
Gunar Schorcht 2022-01-06 11:20:41 +01:00
parent aa44c8ab78
commit 20dfe40330
3 changed files with 0 additions and 10 deletions

View File

@ -20,9 +20,4 @@ endif
# include the Arduino headers
INCLUDES += -I$(RIOTBASE)/sys/arduino/include
# Arduino provices C++11, which is not enabled by default in Ubuntu's avr-gcc
# package, which is __horrible__ out of date. However, we cannot simply ignore
# all Ubuntu users and instead simply manually enable C++11 support
CXXEXFLAGS += -std=c++11
PSEUDOMODULES += arduino_pwm

View File

@ -1,4 +1 @@
# This module requires cpp 11
CXXEXFLAGS += -std=c++11
include $(RIOTBASE)/Makefile.base

View File

@ -1,3 +1 @@
include $(RIOTBASE)/Makefile.base
CXXFLAGS += -std=c++11