mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-03 14:24:15 +01:00
65 lines
2.6 KiB
Makefile
65 lines
2.6 KiB
Makefile
|
|
# Tool suffix when cross-compiling
|
|
#CROSS_COMPILE = ../../../../tools/CodeSourcery_arm/bin/arm-none-eabi-
|
|
CROSS_COMPILE = $(ARM_GCC_TOOLCHAIN)/arm-none-eabi-
|
|
|
|
# Compilation tools
|
|
AR = $(CROSS_COMPILE)ar
|
|
CC = $(CROSS_COMPILE)gcc
|
|
CXX = $(CROSS_COMPILE)g++
|
|
AS = $(CROSS_COMPILE)as
|
|
#LD = $(CROSS_COMPILE)ld
|
|
#SIZE = $(CROSS_COMPILE)size
|
|
NM = $(CROSS_COMPILE)nm
|
|
#OBJCOPY = $(CROSS_COMPILE)objcopy
|
|
RM=cs-rm -Rf
|
|
SEP=\\
|
|
|
|
# ---------------------------------------------------------------------------------------
|
|
# C Flags
|
|
|
|
CFLAGS += -Wall -Wchar-subscripts -Wcomment -Wformat=2 -Wimplicit-int
|
|
CFLAGS += -Werror-implicit-function-declaration -Wmain -Wparentheses
|
|
CFLAGS += -Wsequence-point -Wreturn-type -Wswitch -Wtrigraphs -Wunused
|
|
CFLAGS += -Wuninitialized -Wunknown-pragmas -Wfloat-equal -Wundef
|
|
CFLAGS += -Wshadow -Wpointer-arith -Wbad-function-cast -Wwrite-strings
|
|
CFLAGS += -Wsign-compare -Waggregate-return -Wstrict-prototypes
|
|
CFLAGS += -Wmissing-prototypes -Wmissing-declarations
|
|
CFLAGS += -Wformat -Wmissing-format-attribute -Wno-deprecated-declarations
|
|
CFLAGS += -Wpacked -Wredundant-decls -Wnested-externs -Winline -Wlong-long
|
|
CFLAGS += -Wunreachable-code
|
|
CFLAGS += -Wcast-align
|
|
#CFLAGS += -Wmissing-noreturn
|
|
#CFLAGS += -Wconversion
|
|
|
|
CFLAGS += --param max-inline-insns-single=500 -mcpu=cortex-m3 -mthumb -mlong-calls -ffunction-sections -nostdlib
|
|
CFLAGS += $(OPTIMIZATION) $(INCLUDES) -D$(CHIP) -D$(VARIANT)
|
|
|
|
# To reduce application size use only integer printf function.
|
|
CFLAGS += -Dprintf=iprintf
|
|
|
|
# ---------------------------------------------------------------------------------------
|
|
# CPP Flags
|
|
|
|
CPPFLAGS += -Wall -Wchar-subscripts -Wcomment -Wformat=2
|
|
CPPFLAGS += -Wmain -Wparentheses -Wcast-align -Wunreachable-code
|
|
CPPFLAGS += -Wsequence-point -Wreturn-type -Wswitch -Wtrigraphs -Wunused
|
|
CPPFLAGS += -Wuninitialized -Wunknown-pragmas -Wfloat-equal -Wundef
|
|
CPPFLAGS += -Wshadow -Wpointer-arith -Wwrite-strings
|
|
CPPFLAGS += -Wsign-compare -Waggregate-return -Wmissing-declarations
|
|
CPPFLAGS += -Wformat -Wmissing-format-attribute -Wno-deprecated-declarations
|
|
CPPFLAGS += -Wpacked -Wredundant-decls -Winline -Wlong-long
|
|
#CPPFLAGS += -Wmissing-noreturn
|
|
#CPPFLAGS += -Wconversion
|
|
|
|
CPPFLAGS += --param max-inline-insns-single=500 -mcpu=cortex-m3 -mthumb -mlong-calls -ffunction-sections -fno-rtti -fno-exceptions
|
|
CPPFLAGS += $(OPTIMIZATION) $(INCLUDES) -D$(CHIP)
|
|
|
|
# To reduce application size use only integer printf function.
|
|
CPPFLAGS += -Dprintf=iprintf
|
|
|
|
# ---------------------------------------------------------------------------------------
|
|
# ASM Flags
|
|
|
|
ASFLAGS = -mcpu=cortex-m3 -mthumb -Wall -g $(OPTIMIZATION) $(INCLUDES)
|