Skip to content

Commit 5164a74

Browse files
author
Espressif Systems
committed
update Makefile, fix websocket_demo compile issue;
1 parent d091945 commit 5164a74

File tree

2 files changed

+30
-24
lines changed

2 files changed

+30
-24
lines changed

Makefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,10 @@ $(foreach image,$(GEN_IMAGES),$(eval $(call MakeImage,$(basename $(image)))))
396396
#
397397

398398
INCLUDES := $(INCLUDES) -I $(SDK_PATH)/include -I $(SDK_PATH)/extra_include
399-
INCLUDES += -I $(SDK_PATH)/include/lwip -I $(SDK_PATH)/include/lwip/ipv4 -I $(SDK_PATH)/include/lwip/ipv6
400399
INCLUDES += -I $(SDK_PATH)/include/espressif
400+
INCLUDES += -I $(SDK_PATH)/include/lwip
401+
INCLUDES += -I $(SDK_PATH)/include/lwip/ipv4
402+
INCLUDES += -I $(SDK_PATH)/include/lwip/ipv6
403+
INCLUDES += -I $(SDK_PATH)/include/nopoll
401404
INCLUDES += -I $(SDK_PATH)/include/spiffs
405+
INCLUDES += -I $(SDK_PATH)/include/ssl

examples/websocket_demo/Makefile

+25-23
Original file line numberDiff line numberDiff line change
@@ -49,29 +49,31 @@ COMPONENTS_eagle.app.v6 = \
4949
user/libuser.a \
5050
websocket/libwebsocket.a
5151

52-
LINKFLAGS_eagle.app.v6 = \
53-
-L$(SDK_PATH)/lib \
54-
-Wl,--gc-sections \
55-
-nostdlib \
56-
-T$(LD_FILE) \
57-
-Wl,--no-check-sections \
58-
-u call_user_start \
59-
-Wl,-static \
60-
-Wl,--start-group \
61-
-lminic \
62-
-lgcc \
63-
-lhal \
64-
-lphy \
65-
-lpp \
66-
-lnet80211 \
67-
-lwpa \
68-
-lcrypto \
69-
-lmain \
70-
-lfreertos \
71-
-llwip \
72-
-lsmartconfig \
73-
$(DEP_LIBS_eagle.app.v6) \
74-
-Wl,--end-group
52+
LINKFLAGS_eagle.app.v6 = \
53+
-L$(SDK_PATH)/lib \
54+
-Wl,--gc-sections \
55+
-nostdlib \
56+
-T$(LD_FILE) \
57+
-Wl,--no-check-sections \
58+
-u call_user_start \
59+
-Wl,-static \
60+
-Wl,--start-group \
61+
-lcirom \
62+
-lgcc \
63+
-lhal \
64+
-lcrypto \
65+
-lfreertos \
66+
-llwip \
67+
-lmain \
68+
-lnet80211 \
69+
-lnopoll \
70+
-lphy \
71+
-lpp \
72+
-lsmartconfig \
73+
-lssl \
74+
-lwpa \
75+
$(DEP_LIBS_eagle.app.v6)\
76+
-Wl,--end-group
7577

7678
DEPENDS_eagle.app.v6 = \
7779
$(LD_FILE) \

0 commit comments

Comments
 (0)