From 58e8b75fc76d38ea1e1700d3e0d816a58aba03f0 Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Tue, 16 Dec 2014 17:46:50 +0100 Subject: [PATCH] riot_and_cpp: do not link on build tests for stm32f0discovery --- examples/riot_and_cpp/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/riot_and_cpp/Makefile b/examples/riot_and_cpp/Makefile index 34994418a6..8dfe51828d 100644 --- a/examples/riot_and_cpp/Makefile +++ b/examples/riot_and_cpp/Makefile @@ -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)/../..