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

cpu: msp430: set gnu99 as C dialect

This commit is contained in:
Kaspar Schleiser 2016-09-06 18:01:28 +02:00
parent ff151d1568
commit 1f70e65faf

View File

@ -2,7 +2,7 @@
export TARGET_ARCH ?= msp430
# define build specific options
CFLAGS_CPU = -mmcu=$(CPU_MODEL)
CFLAGS_CPU = -mmcu=$(CPU_MODEL) -std=gnu99
CFLAGS_LINK = -ffunction-sections -fdata-sections
CFLAGS_DBG = -gdwarf-2
CFLAGS_OPT ?= -Os