1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/esp_common/makefile: move linking of libhal.a to esp8266 makefile

This commit is contained in:
Gunar Schorcht 2022-02-01 21:24:43 +01:00
parent 6e996f6a4d
commit 60bbe0fe49
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ ifneq (,$(filter esp_now,$(USEMODULE)))
ARCHIVES += -lespnow
endif
ARCHIVES += -lgcc -lwpa -lcore -lnet80211 -lphy -lpp -lstdc++
ARCHIVES += -lgcc -lhal -lwpa -lcore -lnet80211 -lphy -lpp -lstdc++
LINKFLAGS += -L$(RIOTCPU)/$(CPU)/ld
LINKFLAGS += -Tesp8266.rom.ld

View File

@ -78,7 +78,7 @@ CFLAGS += $(if $(findstring qio,$(FLASH_MODE)),-DFLASH_MODE_QIO=1)
CFLAGS += $(if $(findstring dio,$(FLASH_MODE)),-DFLASH_MODE_DIO=1)
CFLAGS += $(if $(findstring dout,$(FLASH_MODE)),-DFLASH_MODE_DOUT=1)
ARCHIVES += -lhal -lg -lc
ARCHIVES += -lg -lc
LINKFLAGS += $(CFLAGS_OPT) $(CFLAGS_DBG)
#ifneq ($(CPU),esp8266)