Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-esp32
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-esp32
Commits
b0582e1e
Commit
b0582e1e
authored
Jan 10, 2019
by
me-no-dev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation failing on Windows because of liblib.a
parent
a539257a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
boards.txt
boards.txt
+3
-0
platform.txt
platform.txt
+1
-1
tools/platformio-build.py
tools/platformio-build.py
+1
-1
tools/sdk/lib/liblib.a
tools/sdk/lib/liblib.a
+0
-1
No files found.
boards.txt
View file @
b0582e1e
...
...
@@ -157,6 +157,9 @@ esp32wrover.menu.PartitionScheme.minimal.build.partitions=minimal
esp32wrover.menu.PartitionScheme.no_ota=No OTA (Large APP)
esp32wrover.menu.PartitionScheme.no_ota.build.partitions=no_ota
esp32wrover.menu.PartitionScheme.no_ota.upload.maximum_size=2097152
esp32wrover.menu.PartitionScheme.huge_app=Huge APP (3MB No OTA)
esp32wrover.menu.PartitionScheme.huge_app.build.partitions=huge_app
esp32wrover.menu.PartitionScheme.huge_app.upload.maximum_size=3145728
esp32wrover.menu.PartitionScheme.min_spiffs=Minimal SPIFFS (Large APPS with OTA)
esp32wrover.menu.PartitionScheme.min_spiffs.build.partitions=min_spiffs
esp32wrover.menu.PartitionScheme.min_spiffs.upload.maximum_size=1966080
...
...
platform.txt
View file @
b0582e1e
...
...
@@ -35,7 +35,7 @@ compiler.S.flags=-c -g3 -x assembler-with-cpp -MMD -mlongcalls
compiler.c.elf.cmd=xtensa-esp32-elf-gcc
compiler.c.elf.flags=-nostdlib "-L{compiler.sdk.path}/lib" "-L{compiler.sdk.path}/ld" -T esp32_out.ld -T esp32.common.ld -T esp32.rom.ld -T esp32.peripherals.ld -T esp32.rom.spiram_incompatible_fns.ld -u ld_include_panic_highint_hdl -u call_user_start_cpu0 -Wl,--gc-sections -Wl,-static -Wl,--undefined=uxTopUsedPriority -u __cxa_guard_dummy -u __cxx_fatal_exception
compiler.c.elf.libs=-lgcc -lopenssl -lbtdm_app -lfatfs -lwps -lcoexist -lwear_levelling -lesp_http_client -lprotobuf-c -lhal -lnewlib -ldriver -lbootloader_support -lpp -lfreemodbus -lmesh -lsmartconfig -ljsmn -lwpa -lethernet -lphy -lfrmn -lapp_trace -lfr_coefficients -lconsole -lulp -lwpa_supplicant -lfreertos -lbt -lmicro-ecc -lesp32-camera -lcxx -lxtensa-debug-module -ltcp_transport -lmdns -lvfs -lmtmn -lesp_ringbuf -lsoc -lcore -lfb_gfx -lsdmmc -llibsodium -lcoap -ltcpip_adapter -lprotocomm -lesp_event -limage_util -lc_nano -lesp-tls -lasio -lrtc -lspi_flash -lwpa2 -lwifi_provisioning -lesp32 -lface_recognition -lapp_update -lnghttp -l
lib -l
spiffs -lface_detection -lunity -lesp_https_server -lespnow -lnvs_flash -lesp_adc_cal -llog -ldl_lib -lsmartconfig_ack -lexpat -lfd_coefficients -lm -lmqtt -lc -lheap -lmbedtls -llwip -lnet80211 -lesp_http_server -lpthread -ljson -lesp_https_ota -lstdc++
compiler.c.elf.libs=-lgcc -lopenssl -lbtdm_app -lfatfs -lwps -lcoexist -lwear_levelling -lesp_http_client -lprotobuf-c -lhal -lnewlib -ldriver -lbootloader_support -lpp -lfreemodbus -lmesh -lsmartconfig -ljsmn -lwpa -lethernet -lphy -lfrmn -lapp_trace -lfr_coefficients -lconsole -lulp -lwpa_supplicant -lfreertos -lbt -lmicro-ecc -lesp32-camera -lcxx -lxtensa-debug-module -ltcp_transport -lmdns -lvfs -lmtmn -lesp_ringbuf -lsoc -lcore -lfb_gfx -lsdmmc -llibsodium -lcoap -ltcpip_adapter -lprotocomm -lesp_event -limage_util -lc_nano -lesp-tls -lasio -lrtc -lspi_flash -lwpa2 -lwifi_provisioning -lesp32 -lface_recognition -lapp_update -lnghttp -lspiffs -lface_detection -lunity -lesp_https_server -lespnow -lnvs_flash -lesp_adc_cal -llog -ldl_lib -lsmartconfig_ack -lexpat -lfd_coefficients -lm -lmqtt -lc -lheap -lmbedtls -llwip -lnet80211 -lesp_http_server -lpthread -ljson -lesp_https_ota -lstdc++
compiler.as.cmd=xtensa-esp32-elf-as
...
...
tools/platformio-build.py
View file @
b0582e1e
...
...
@@ -163,7 +163,7 @@ env.Append(
],
LIBS
=
[
"-lgcc"
,
"-lopenssl"
,
"-lbtdm_app"
,
"-lfatfs"
,
"-lwps"
,
"-lcoexist"
,
"-lwear_levelling"
,
"-lesp_http_client"
,
"-lprotobuf-c"
,
"-lhal"
,
"-lnewlib"
,
"-ldriver"
,
"-lbootloader_support"
,
"-lpp"
,
"-lfreemodbus"
,
"-lmesh"
,
"-lsmartconfig"
,
"-ljsmn"
,
"-lwpa"
,
"-lethernet"
,
"-lphy"
,
"-lfrmn"
,
"-lapp_trace"
,
"-lfr_coefficients"
,
"-lconsole"
,
"-lulp"
,
"-lwpa_supplicant"
,
"-lfreertos"
,
"-lbt"
,
"-lmicro-ecc"
,
"-lesp32-camera"
,
"-lcxx"
,
"-lxtensa-debug-module"
,
"-ltcp_transport"
,
"-lmdns"
,
"-lvfs"
,
"-lmtmn"
,
"-lesp_ringbuf"
,
"-lsoc"
,
"-lcore"
,
"-lfb_gfx"
,
"-lsdmmc"
,
"-llibsodium"
,
"-lcoap"
,
"-ltcpip_adapter"
,
"-lprotocomm"
,
"-lesp_event"
,
"-limage_util"
,
"-lc_nano"
,
"-lesp-tls"
,
"-lasio"
,
"-lrtc"
,
"-lspi_flash"
,
"-lwpa2"
,
"-lwifi_provisioning"
,
"-lesp32"
,
"-lface_recognition"
,
"-lapp_update"
,
"-lnghttp"
,
"-l
lib"
,
"-l
spiffs"
,
"-lface_detection"
,
"-lunity"
,
"-lesp_https_server"
,
"-lespnow"
,
"-lnvs_flash"
,
"-lesp_adc_cal"
,
"-llog"
,
"-ldl_lib"
,
"-lsmartconfig_ack"
,
"-lexpat"
,
"-lfd_coefficients"
,
"-lm"
,
"-lmqtt"
,
"-lc"
,
"-lheap"
,
"-lmbedtls"
,
"-llwip"
,
"-lnet80211"
,
"-lesp_http_server"
,
"-lpthread"
,
"-ljson"
,
"-lesp_https_ota"
,
"-lstdc++"
"-lgcc"
,
"-lopenssl"
,
"-lbtdm_app"
,
"-lfatfs"
,
"-lwps"
,
"-lcoexist"
,
"-lwear_levelling"
,
"-lesp_http_client"
,
"-lprotobuf-c"
,
"-lhal"
,
"-lnewlib"
,
"-ldriver"
,
"-lbootloader_support"
,
"-lpp"
,
"-lfreemodbus"
,
"-lmesh"
,
"-lsmartconfig"
,
"-ljsmn"
,
"-lwpa"
,
"-lethernet"
,
"-lphy"
,
"-lfrmn"
,
"-lapp_trace"
,
"-lfr_coefficients"
,
"-lconsole"
,
"-lulp"
,
"-lwpa_supplicant"
,
"-lfreertos"
,
"-lbt"
,
"-lmicro-ecc"
,
"-lesp32-camera"
,
"-lcxx"
,
"-lxtensa-debug-module"
,
"-ltcp_transport"
,
"-lmdns"
,
"-lvfs"
,
"-lmtmn"
,
"-lesp_ringbuf"
,
"-lsoc"
,
"-lcore"
,
"-lfb_gfx"
,
"-lsdmmc"
,
"-llibsodium"
,
"-lcoap"
,
"-ltcpip_adapter"
,
"-lprotocomm"
,
"-lesp_event"
,
"-limage_util"
,
"-lc_nano"
,
"-lesp-tls"
,
"-lasio"
,
"-lrtc"
,
"-lspi_flash"
,
"-lwpa2"
,
"-lwifi_provisioning"
,
"-lesp32"
,
"-lface_recognition"
,
"-lapp_update"
,
"-lnghttp"
,
"-lspiffs"
,
"-lface_detection"
,
"-lunity"
,
"-lesp_https_server"
,
"-lespnow"
,
"-lnvs_flash"
,
"-lesp_adc_cal"
,
"-llog"
,
"-ldl_lib"
,
"-lsmartconfig_ack"
,
"-lexpat"
,
"-lfd_coefficients"
,
"-lm"
,
"-lmqtt"
,
"-lc"
,
"-lheap"
,
"-lmbedtls"
,
"-llwip"
,
"-lnet80211"
,
"-lesp_http_server"
,
"-lpthread"
,
"-ljson"
,
"-lesp_https_ota"
,
"-lstdc++"
],
LIBSOURCE_DIRS
=
[
...
...
tools/sdk/lib/liblib.a
deleted
100644 → 0
View file @
a539257a
!<arch>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment