forked from platformio/platformio-core
Switch to gcc-built LwIP library for espressif platform
This commit is contained in:
@ -55,13 +55,14 @@ elif env.get("PLATFORM") == "timsp430":
|
|||||||
)
|
)
|
||||||
elif env.get("PLATFORM") == "espressif":
|
elif env.get("PLATFORM") == "espressif":
|
||||||
env.Prepend(
|
env.Prepend(
|
||||||
|
CPPDEFINES=["LWIP_OPEN_SRC"],
|
||||||
CPPPATH=[
|
CPPPATH=[
|
||||||
join("$PLATFORMFW_DIR", "tools", "sdk", "include"),
|
join("$PLATFORMFW_DIR", "tools", "sdk", "include"),
|
||||||
join("$PLATFORMFW_DIR", "tools", "sdk", "lwip", "include")
|
join("$PLATFORMFW_DIR", "tools", "sdk", "lwip", "include")
|
||||||
],
|
],
|
||||||
LIBPATH=[join("$PLATFORMFW_DIR", "tools", "sdk", "lib")],
|
LIBPATH=[join("$PLATFORMFW_DIR", "tools", "sdk", "lib")],
|
||||||
LIBS=[
|
LIBS=[
|
||||||
"mesh", "wpa2", "smartconfig", "pp", "main", "wpa", "lwip",
|
"mesh", "wpa2", "smartconfig", "pp", "main", "wpa", "lwip_gcc",
|
||||||
"net80211", "wps", "crypto", "phy", "hal", "axtls", "gcc",
|
"net80211", "wps", "crypto", "phy", "hal", "axtls", "gcc",
|
||||||
"m", "stdc++"
|
"m", "stdc++"
|
||||||
]
|
]
|
||||||
|
Reference in New Issue
Block a user