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

cpu/esp32: fixes LINKFLAGS in Makefile.include

removes the duplicate entry of -lg in LINKFLAGS
This commit is contained in:
Gunar Schorcht 2018-11-26 14:42:00 +01:00
parent 9bba4b9aa5
commit 0c289a8f31

View File

@ -124,7 +124,7 @@ ifneq (,$(filter esp_wifi_any,$(USEMODULE)))
BASELIBS += -lwps -lwpa -lwpa2 -lespnow -lmesh -lphy -lstdc++
endif
LINKFLAGS += -lhal -lg -lc -lg
LINKFLAGS += -lhal -lg -lc
LINKFLAGS += -L$(RIOTCPU)/$(CPU)/ld/
LINKFLAGS += -T$(RIOTCPU)/$(CPU)/ld/esp32.ld
LINKFLAGS += -T$(RIOTCPU)/$(CPU)/ld/esp32.common.ld