mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
4bfd549301
On some platforms `libstdc++` is not used or not available, like on the AVR. Such platforms can use this module to implement the C++ `new` and `delete` operators using `malloc` and `free` respectively. However, to be thread-safe, a thread-safe implementation of `malloc` and `free` must be present.
4 lines
58 B
Makefile
4 lines
58 B
Makefile
include $(RIOTBASE)/Makefile.base
|
|
|
|
CXXFLAGS += -std=c++11
|