cpu/atmega_common: move common dependencies

This commit is contained in:
Alexandre Abadie 2019-12-11 07:50:32 +01:00
parent 9b7f06034e
commit e969b2fcd5
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
2 changed files with 6 additions and 9 deletions

View File

@ -4,6 +4,12 @@ USEMODULE += avr_libc_extra
# tell the build system to build the atmega common files # tell the build system to build the atmega common files
USEMODULE += atmega_common USEMODULE += atmega_common
# peripheral drivers are linked into the final binary
USEMODULE += atmega_common_periph
# the atmel port uses stdio_uart
USEMODULE += stdio_uart
# expand atmega_pcint module # expand atmega_pcint module
ifneq (,$(filter atmega_pcint,$(USEMODULE))) ifneq (,$(filter atmega_pcint,$(USEMODULE)))
USEMODULE += atmega_pcint0 USEMODULE += atmega_pcint0

View File

@ -11,15 +11,6 @@ ASFLAGS += $(CFLAGS_CPU) $(CFLAGS_DBG)
LINKFLAGS += $(CFLAGS_CPU) $(CFLAGS_DBG) $(CFLAGS_OPT) -static -lgcc -e reset_handler -Wl,--gc-sections LINKFLAGS += $(CFLAGS_CPU) $(CFLAGS_DBG) $(CFLAGS_OPT) -static -lgcc -e reset_handler -Wl,--gc-sections
OFLAGS += -j .text -j .data OFLAGS += -j .text -j .data
# Tell the build system that the CPU depends on the atmega common files:
USEMODULE += atmega_common
# export the peripheral drivers to be linked into the final binary
USEMODULE += atmega_common_periph
# the atmel port uses stdio_uart
USEMODULE += stdio_uart
# explicitly tell the linker to link the syscalls and startup code. # explicitly tell the linker to link the syscalls and startup code.
# without this the interrupt vectors will not be linked correctly! # without this the interrupt vectors will not be linked correctly!
UNDEF += $(BINDIR)/atmega_common/startup.o UNDEF += $(BINDIR)/atmega_common/startup.o