unix/Makefile: Remove explicit addition of -std=c++ flag.

This was added merely for building the C++ user module example, so it's a
better fit to add it in the corresponding micropython.mk.
This commit is contained in:
stijn
2022-02-15 10:16:46 +01:00
committed by Damien George
parent 9c05f3aa1d
commit 8bb50c6301
2 changed files with 1 additions and 7 deletions

View File

@@ -270,12 +270,6 @@ CFLAGS += -DMPZ_DIG_SIZE=16 # force 16 bits to work on both 32 and 64 bit archs
CFLAGS += -DMICROPY_MODULE_FROZEN_STR
endif
HASCPP17 = $(shell expr `$(CC) -dumpversion | cut -f1 -d.` \>= 7)
ifeq ($(HASCPP17), 1)
CXXFLAGS += -std=c++17
else
CXXFLAGS += -std=c++11
endif
CXXFLAGS += $(filter-out -Wmissing-prototypes -Wold-style-definition -std=gnu99,$(CFLAGS) $(CXXFLAGS_MOD))
ifeq ($(MICROPY_FORCE_32BIT),1)