mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
178b36ae0b
added cpp as feature for board native
55 lines
2.2 KiB
Makefile
55 lines
2.2 KiB
Makefile
# name of your application
|
|
APPLICATION = riot_and_cpp
|
|
|
|
# If no BOARD is found in the environment, use this default:
|
|
BOARD ?= native
|
|
|
|
# This has to be the absolute path to the RIOT base directory:
|
|
RIOTBASE ?= $(CURDIR)/../..
|
|
|
|
# Uncomment these lines if you want to use platform support from external
|
|
# repositories:
|
|
#RIOTCPU ?= $(CURDIR)/../../../thirdparty_cpu
|
|
#RIOTBOARD ?= $(CURDIR)/../../../thirdparty_boards
|
|
|
|
# Uncomment this to enable scheduler statistics for ps:
|
|
#CFLAGS += -DSCHEDSTATISTICS
|
|
|
|
# If you want to use native with valgrind, you should recompile native
|
|
# with the target all-valgrind instead of all:
|
|
# make -B clean all-valgrind
|
|
|
|
# Comment this out to disable code in RIOT that does safety checking
|
|
# which is not needed in a production environment but helps in the
|
|
# development process:
|
|
CFLAGS += -DDEVELHELP
|
|
|
|
# Change this to 0 show compiler invocation lines by default:
|
|
QUIET ?= 1
|
|
|
|
# Features required
|
|
FEATURES_REQUIRED += cpp
|
|
|
|
# This example only works with native for now.
|
|
# msb430-based boards: msp430-g++ is not provided in mspgcc.
|
|
# (People who want use c++ can build c++ compiler from source, or get binaries from Energia http://energia.nu/)
|
|
# msba2: some changes should be applied to successfully compile c++. (_kill_r, _kill, __dso_handle)
|
|
# stm32f0discovery: g++ does not support some used flags (e.g. -mthumb...)
|
|
# stm32f3discovery: g++ does not support some used flags (e.g. -mthumb...)
|
|
# stm32f4discovery: g++ does not support some used flags (e.g. -mthumb...)
|
|
# pca10000: g++ does not support some used flags (e.g. -mthumb...)
|
|
# pca10005: g++ does not support some used flags (e.g. -mthumb...)
|
|
# yunjia-nrf51822: g++ does not support some used flags (e.g. -mthumb...)
|
|
# iot-lab_M3: g++ does not support some used flags (e.g. -mthumb...)
|
|
# arduino-mega2560: cstdio header missing from avr-libc
|
|
# msbiot g++ does not support some used flags (e.g. -mthumb...)
|
|
# samr21-xpro g++ does not support some used flags (e.g. -mthumb...)
|
|
# cc2538dk: g++ does not support some used flags (e.g. -mthumb...)
|
|
# others: untested.
|
|
|
|
# If you want to add some extra flags when compile c++ files, add these flags
|
|
# to CXXEXFLAGS variable
|
|
CXXEXFLAGS +=
|
|
|
|
include $(RIOTBASE)/Makefile.include
|