mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
5cb1d03ef4
Sometimes it is difficult to track down build errors for boards that you are unfamiliar with. This change adds `make buildinfo` that prints out all the relevant build information for the selected board and project: ``` PROJECT: default BOARD: msba2 CPU: lpc2387 MCU: lpc2387 RIOTBASE: /home/kijewski/RIOT/RIOT RIOTBOARD: /home/kijewski/RIOT/RIOT/boards RIOTCPU: /home/kijewski/RIOT/RIOT/cpu DEFAULT_MODULE: auto_init core cpu sys DISABLE_MODULE: USEMODULE: arm_common cc110x_ng cc110x_spi config defaulttransceiver gpioint lib lpc_common ltc4150 mci net_help posix protocol_multiplex ps random rtc shell shell_commands sht11 timex transceiver uart0 vtimer ELFFILE: /home/kijewski/RIOT/RIOT/examples/default/bin/msba2/default.elf HEXFILE: /home/kijewski/RIOT/RIOT/examples/default/bin/msba2/default.hex CC: arm-none-eabi-gcc CFLAGSS: -DBOARD_MSBA2 -DCPU_LPC2387 -DMODULE_ARM_COMMON -DMODULE_AUTO_INIT -DMODULE_CC110X_NG -DMODULE_CC110X_SPI -DMODULE_CONFIG -DMODULE_CORE -DMODULE_CPU -DMODULE_DEFAULTTRANSCEIVER -DMODULE_GPIOINT -DMODULE_LIB -DMODULE_LPC_COMMON -DMODULE_LTC4150 -DMODULE_MCI -DMODULE_NET_HELP -DMODULE_POSIX -DMODULE_PROTOCOL_MULTIPLEX -DMODULE_PS -DMODULE_RANDOM -DMODULE_RTC -DMODULE_SHELL -DMODULE_SHELL_COMMANDS -DMODULE_SHT11 -DMODULE_SYS -DMODULE_TIMEX -DMODULE_TRANSCEIVER -DMODULE_UART0 -DMODULE_VTIMER -O2 -Wall -Wstrict-prototypes -mcpu=arm7tdmi-s -gdwarf-2 -std=gnu99 -fno-delete-null-pointer-checks -Wstrict-prototypes -Werror=strict-prototypes -Wold-style-definition -Werror=old-style-definition LINK: arm-none-eabi-gcc LINKFLAGS: -gdwarf-2 -mcpu=arm7tdmi-s -static -lgcc -nostartfiles -T/home/kijewski/RIOT/RIOT/cpu/lpc2387/linkerscript.x OBJCOPY: arm-none-eabi-objcopy OFLAGS: -O ihex FLASHER: lpc2k_pgm FFLAGS: /dev/ttyUSB0 /home/kijewski/RIOT/RIOT/examples/default/bin/msba2/default.hex TERMPROG: /home/kijewski/RIOT/RIOT/dist/tools/pyterm/pyterm.py PORT: /dev/ttyUSB0 DEBUGGER: DEBUGGER_FLAGS: MAKEFILE_LIST: /home/kijewski/RIOT/RIOT/examples/default/Makefile /home/kijewski/RIOT/RIOT/Makefile.include /home/kijewski/RIOT/RIOT/Makefile.modules /home/kijewski/RIOT/RIOT/Makefile.pseudomodules /home/kijewski/RIOT/RIOT/Makefile.defaultmodules /home/kijewski/RIOT/RIOT/boards/msba2/Makefile.include /home/kijewski/RIOT/RIOT/boards/msba2-common/Makefile.include /home/kijewski/RIOT/RIOT/boards/msba2-common/Makefile.dep /home/kijewski/RIOT/RIOT/cpu/lpc2387/Makefile.include /home/kijewski/RIOT/RIOT/cpu/arm_common/Makefile.include /home/kijewski/RIOT/RIOT/cpu/lpc_common/Makefile.include /home/kijewski/RIOT/RIOT/Makefile.dep /home/kijewski/RIOT/RIOT/Makefile.cflags /home/kijewski/RIOT/RIOT/sys/Makefile.include /home/kijewski/RIOT/RIOT/drivers/Makefile.include /home/kijewski/RIOT/RIOT/Makefile.buildtests ```
148 lines
4.2 KiB
Makefile
148 lines
4.2 KiB
Makefile
# Provide a shallow sanity check. You cannot call `make` in the root directory.
|
|
export __RIOTBUILD_FLAG := RIOT
|
|
|
|
# set undefined variables
|
|
RIOTBASE ?= $(shell dirname "$(lastword $(MAKEFILE_LIST))")
|
|
export RIOTBASE := $(abspath $(RIOTBASE))
|
|
|
|
RIOTCPU ?= $(RIOTBASE)/cpu
|
|
export RIOTCPU := $(abspath $(RIOTCPU))
|
|
|
|
RIOTBOARD ?= $(RIOTBASE)/boards
|
|
export RIOTBOARD := $(abspath $(RIOTBOARD))
|
|
|
|
ifeq ($(strip $(MCU)),)
|
|
MCU = $(CPU)
|
|
endif
|
|
|
|
ifeq (,$(filter buildtest,$(MAKECMDGOALS)))
|
|
ifneq (,$(BOARD_WHITELIST))
|
|
ifeq (,$(filter $(BOARD),$(BOARD_WHITELIST)))
|
|
$(error This application only runs on following boards: $(BOARD_WHITELIST))
|
|
endif
|
|
endif
|
|
|
|
ifneq (,$(filter $(BOARD),$(BOARD_BLACKLIST)))
|
|
$(error This application does not run on following boards: $(BOARD_BLACKLIST))
|
|
endif
|
|
endif
|
|
|
|
# if you want to publish the board into the sources as an uppercase #define
|
|
BB = $(shell echo $(BOARD)|tr 'a-z' 'A-Z'|tr '-' '_')
|
|
CPUDEF = $(shell echo $(CPU)|tr 'a-z' 'A-Z'|tr '-' '_')
|
|
CFLAGS += -DBOARD_$(BB) -DCPU_$(CPUDEF)
|
|
|
|
export CFLAGS
|
|
|
|
export BINDIRBASE ?= $(CURDIR)/bin
|
|
export BINDIR ?= $(abspath $(BINDIRBASE)/$(BOARD))/
|
|
|
|
ifeq ($(QUIET),1)
|
|
AD=@
|
|
else
|
|
AD=
|
|
endif
|
|
export AD
|
|
|
|
BOARD := $(strip $(BOARD))
|
|
|
|
# mandatory includes!
|
|
include $(RIOTBASE)/Makefile.modules
|
|
include $(RIOTBOARD)/$(BOARD)/Makefile.include
|
|
include $(RIOTCPU)/$(CPU)/Makefile.include
|
|
include $(RIOTBASE)/Makefile.dep
|
|
|
|
# Test if there where dependencies against a module in DISABLE_MODULE.
|
|
ifneq (, $(filter $(DISABLE_MODULE), $(USEMODULE)))
|
|
$(error "Required modules were disabled using DISABLE_MODULE: $(sort $(filter $(DISABLE_MODULE), $(USEMODULE)))")
|
|
endif
|
|
|
|
# Feature test default CFLAGS and LINKFLAGS for the set compiled.
|
|
include $(RIOTBASE)/Makefile.cflags
|
|
|
|
# your binaries to link
|
|
BASELIBS += $(BINDIR)$(BOARD)_base.a
|
|
BASELIBS += $(BINDIR)${PROJECT}.a
|
|
BASELIBS += $(USEPKG:%=${BINDIR}%.a)
|
|
|
|
.PHONY: all clean flash doc term objsize buildsize buildsizes buildsizes-diff buildinfo
|
|
|
|
export ELFFILE ?= $(BINDIR)$(PROJECT).elf
|
|
export HEXFILE ?= $(ELFFILE:.elf=.hex)
|
|
|
|
## make script for your application. Build RIOT-base here!
|
|
all: $(BINDIR)$(PROJECT).a
|
|
@echo "Building application $(PROJECT) for $(BOARD) w/ MCU $(MCU)."
|
|
"$(MAKE)" -C $(RIOTBOARD)/$(BOARD)
|
|
"$(MAKE)" -C $(RIOTBASE)
|
|
ifeq ($(BUILDOSXNATIVE),1)
|
|
$(AD)$(LINK) $(UNDEF) -o $(ELFFILE) $(BASELIBS) $(LINKFLAGS) -Wl,-no_pie
|
|
else
|
|
$(AD)$(LINK) $(UNDEF) -o $(ELFFILE) -Wl,--start-group $(BASELIBS) -lm -Wl,--end-group -Wl,-Map=$(BINDIR)$(PROJECT).map $(LINKFLAGS)
|
|
endif
|
|
$(AD)$(SIZE) $(ELFFILE)
|
|
$(AD)$(OBJCOPY) $(OFLAGS) $(ELFFILE) $(HEXFILE)
|
|
|
|
## your make rules
|
|
## Only basic example - modify it for larger applications!!
|
|
#$(BINDIR)/$(PROJECT).a: $(BINDIR)/$(PROJECT).o
|
|
# $(AR) -rc $(BINDIR)/project.a $(BINDIR)/$(PROJECT).o
|
|
|
|
# string array of all names of c files in dir
|
|
SRC = $(wildcard *.c)
|
|
|
|
# string array of all names replaced .c with .o
|
|
OBJ = $(SRC:%.c=${BINDIR}${PROJECT}/%.o)
|
|
|
|
$(BINDIR)$(PROJECT).a: $(OBJ)
|
|
$(AD)$(AR) -rc $(BINDIR)$(PROJECT).a $(OBJ)
|
|
|
|
# add extra include paths for packages in $(USEMODULE)
|
|
export USEMODULE_INCLUDES =
|
|
|
|
include $(RIOTBASE)/sys/Makefile.include
|
|
include $(RIOTBASE)/drivers/Makefile.include
|
|
|
|
USEMODULE_INCLUDES_ = $(shell echo $(USEMODULE_INCLUDES) | tr ' ' '\n' | awk '!a[$$0]++' | tr '\n' ' ')
|
|
|
|
INCLUDES += $(USEMODULE_INCLUDES_:%=-I%)
|
|
|
|
# include Makefile.includes for packages in $(USEPKG)
|
|
$(RIOTBASE)/pkg/%/Makefile.include::
|
|
$(AD)"$(MAKE)" -C $(RIOTBASE)/pkg/$* Makefile.include
|
|
|
|
.PHONY: $(USEPKG:%=$(RIOTBASE)/pkg/%/Makefile.include)
|
|
|
|
-include $(USEPKG:%=$(RIOTBASE)/pkg/%/Makefile.include)
|
|
|
|
# pull in dependency info for *existing* .o files
|
|
-include $(OBJ:.o=.d)
|
|
|
|
$(BINDIR)$(PROJECT)/%.o: %.c $(PROJDEPS) $(USEPKG:%=${BINDIR}%.a)
|
|
@echo; echo "Compiling.... $*.c"; echo
|
|
$(AD)mkdir -p "$(dir $@)"
|
|
$(AD)$(CC) $(CFLAGS) $(INCLUDES) -c "$<" -o "$@"
|
|
|
|
$(USEPKG:%=${BINDIR}%.a)::
|
|
@mkdir -p ${BINDIR}
|
|
"$(MAKE)" -C $(RIOTBASE)/pkg/$(patsubst ${BINDIR}%.a,%,$@)
|
|
|
|
clean:
|
|
@for i in $(USEPKG) ; do "$(MAKE)" -C $(RIOTBASE)/pkg/$$i clean || exit 1; done
|
|
rm -rf $(BINDIR) $(CLEANFILES)
|
|
|
|
flash: all
|
|
$(FLASHER) $(FFLAGS)
|
|
|
|
term:
|
|
$(TERMPROG) $(PORT)
|
|
|
|
doc:
|
|
make -BC $(RIOTBASE) doc
|
|
|
|
debug:
|
|
$(DEBUGGER) $(DEBUGGER_FLAGS)
|
|
|
|
# Extra make goals for testing and comparing changes.
|
|
include $(RIOTBASE)/Makefile.buildtests
|