mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2026-01-01 01:41:18 +01:00
- Add libstdcpp feature to indicate a platform is providing a libstdc++ implementation ready for use - The existing cpp feature now only indicates a working C++ toolchain without libstdc++. (E.g. still useful for the Arduino compatibility layer.) - Added libstdcpp as required feature were needed - Added some documentation on C++ on RIOT
16 lines
434 B
Makefile
16 lines
434 B
Makefile
FEATURES_PROVIDED += arch_32bit
|
|
FEATURES_PROVIDED += arch_native
|
|
FEATURES_PROVIDED += cpp
|
|
FEATURES_PROVIDED += libstdcpp
|
|
FEATURES_PROVIDED += periph_cpuid
|
|
FEATURES_PROVIDED += periph_eeprom
|
|
FEATURES_PROVIDED += periph_hwrng
|
|
FEATURES_PROVIDED += periph_pm
|
|
FEATURES_PROVIDED += periph_pwm
|
|
FEATURES_PROVIDED += ssp
|
|
|
|
# Access to hardware SPI bus is only supported on Linux hosts
|
|
ifeq ($(OS),Linux)
|
|
FEATURES_PROVIDED += periph_spi
|
|
endif
|