1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #2204 from authmillenon/riot_and_cpp/fix/not-link-stm32f0discovery

riot_and_cpp: do not link on build tests for stm32f0discovery
This commit is contained in:
Martine Lenders 2014-12-16 21:31:55 +01:00
commit 5c9d749649

View File

@ -4,6 +4,10 @@ APPLICATION = riot_and_cpp
# If no BOARD is found in the environment, use this default:
BOARD ?= native
# stm32f0discovery objects are too big with ARM Embedded Toolchain v4.9.3 20141119
# (used currently by travis)
BOARD_INSUFFICIENT_RAM=stm32f0discovery
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../..