I have a ESP-12F for Arduino,Compatible with WeMos D1 Mini.
https://www.amazon.com/dp/B081PX9YFV?psc=1&ref=ppx_yo2ov_dt_b_product_details
I uploaded this Arduino IDE inbuilt blink sketch.
void setup() {
pinMode(LED_BUILTIN, OUTPUT); // Initialize the LED_BUILTIN pin as an output
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, LOW); // Turn the LED on (Note that LOW is the voltage level
// but actually the LED is on; this is because
// it is active low on the ESP-01)
delay(1000); // Wait for a second
digitalWrite(LED_BUILTIN, HIGH); // Turn the LED off by making the voltage HIGH
delay(2000); // Wait for two seconds (to demonstrate the active low LED)
}
When I compile it, I get:
collect2.exe: fatal error: CreateProcess: No such file or directory
compilation terminated.
exit status 1
Compilation error: exit status 1
In boards, I selected: LOLIN(WEMOS) D1 R2 & mini
The library I have is esp8266 by ESP8266 Community
In Additional boards manager URLs, I have http://arduino.esp8266.com/stable/package_esp8266com_index.json
I ran a regular blink on a Arduino Nano to see if the IDE was faulty, but the LED blinked as it should. The IDE seems good. ( I even redownloaded the IDE)
I also did the procedure below to ensure that the Arduino IDE and related tools are added to my system's PATH environment variable.
Can someone give me so feedback as to how to fix this issue? Ty
I can't really help you; the last part of a verify should look like below if you enable verbose output during compilation under file/preferences.
Linking everything together...
/home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/tools/python3/3.7.2-post1/python3 -I /home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/hardware/esp8266/3.1.2/tools/mkdir.py -p /tmp/arduino_build_613132/ld_h/
/home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/tools/python3/3.7.2-post1/python3 -I /home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/hardware/esp8266/3.1.2/tools/cp.py /home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/hardware/esp8266/3.1.2/tools/sdk/ld/eagle.flash.4m2m.ld /tmp/arduino_build_613132/ld_h/local.eagle.flash.ld.h
/home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/tools/xtensa-lx106-elf-gcc/3.1.0-gcc10.3-e5f9fec/bin/xtensa-lx106-elf-gcc -CC -E -P -DVTABLES_IN_FLASH -DMMU_IRAM_SIZE=0x8000 -DMMU_ICACHE_SIZE=0x8000 /tmp/arduino_build_613132/ld_h/local.eagle.flash.ld.h -o /tmp/arduino_build_613132/local.eagle.flash.ld
/home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/tools/xtensa-lx106-elf-gcc/3.1.0-gcc10.3-e5f9fec/bin/xtensa-lx106-elf-gcc -CC -E -P -DVTABLES_IN_FLASH -DMMU_IRAM_SIZE=0x8000 -DMMU_ICACHE_SIZE=0x8000 /home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/hardware/esp8266/3.1.2/tools/sdk/ld/eagle.app.v6.common.ld.h -o /tmp/arduino_build_613132/local.eagle.app.v6.common.ld
/home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/tools/xtensa-lx106-elf-gcc/3.1.0-gcc10.3-e5f9fec/bin/xtensa-lx106-elf-gcc -fno-exceptions -Wl,-Map -Wl,/tmp/arduino_build_613132/sketch_apr07a.ino.map -g @/home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/hardware/esp8266/3.1.2/tools/warnings/extra-cflags -Os -nostdlib -Wl,--no-check-sections -u app_entry -u _printf_float -u _scanf_float -Wl,-static -L/home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/hardware/esp8266/3.1.2/tools/sdk/lib -L/home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/hardware/esp8266/3.1.2/tools/sdk/lib/NONOSDK22x_190703 -L/tmp/arduino_build_613132 -L/home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/hardware/esp8266/3.1.2/tools/sdk/libc/xtensa-lx106-elf/lib -Tlocal.eagle.flash.ld -Wl,--gc-sections -Wl,-wrap,system_restart_local -Wl,-wrap,spi_flash_read -o /tmp/arduino_build_613132/sketch_apr07a.ino.elf -Wl,--start-group /tmp/arduino_build_613132/sketch/sketch_apr07a.ino.cpp.o /tmp/arduino_build_613132/core/core.a -lhal -lphy -lpp -lnet80211 -llwip2-536-feat -lwpa -lcrypto -lmain -lwps -lbearssl -lespnow -lsmartconfig -lairkiss -lwpa2 -lstdc++ -lm -lc -lgcc -Wl,--end-group -L/tmp/arduino_build_613132
/home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/tools/python3/3.7.2-post1/python3 -I /home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/hardware/esp8266/3.1.2/tools/elf2bin.py --eboot /home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/hardware/esp8266/3.1.2/bootloaders/eboot/eboot.elf --app /tmp/arduino_build_613132/sketch_apr07a.ino.elf --flash_mode dio --flash_freq 40 --flash_size 4M --path /home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/tools/xtensa-lx106-elf-gcc/3.1.0-gcc10.3-e5f9fec/bin --out /tmp/arduino_build_613132/sketch_apr07a.ino.bin
Creating BIN file "/tmp/arduino_build_613132/sketch_apr07a.ino.bin" using "/home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/hardware/esp8266/3.1.2/bootloaders/eboot/eboot.elf" and "/tmp/arduino_build_613132/sketch_apr07a.ino.elf"
/home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/tools/python3/3.7.2-post1/python3 -I /home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/hardware/esp8266/3.1.2/tools/signing.py --mode sign --privatekey /tmp/arduino_modified_sketch_917551/private.key --bin /tmp/arduino_build_613132/sketch_apr07a.ino.bin --out /tmp/arduino_build_613132/sketch_apr07a.ino.bin.signed --legacy /tmp/arduino_build_613132/sketch_apr07a.ino.bin.legacy_sig
/home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/tools/python3/3.7.2-post1/python3 -X utf8 -I /home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/hardware/esp8266/3.1.2/tools/sizes.py --elf /tmp/arduino_build_613132/sketch_apr07a.ino.elf --path /home/wim/Downloads/arduino-1.8.19-esp8266/portable/packages/esp8266/tools/xtensa-lx106-elf-gcc/3.1.0-gcc10.3-e5f9fec/bin --mmu "-DMMU_IRAM_SIZE=0x8000 -DMMU_ICACHE_SIZE=0x8000"
Maybe from that you can figure out which line causes the problem and which application can't be found.
I suspect a corrupt installation; you can possibly solve that by downgrading the board package and next upgrade it again.
Hi @Mars-Sojourner . I'm going to ask you to post the full verbose output from a compilation.
This procedure is not intended to solve the problem. The purpose is to gather more information.
Please do this:
Select File > Preferences... (or Arduino IDE > Settings... for macOS users) from the Arduino IDE menus.
The "Preferences " dialog will open.
Check the box next to "Show verbose output during: ☐ compilation " in the "Preferences " dialog.
Click the "OK " button.
The "Preferences " dialog will close.
Select Sketch > Verify/Compile from the Arduino IDE menus.
Wait for the compilation to fail.
You will see a "Compilation error: ... " notification at the bottom right corner of the Arduino IDE window. Click the "COPY ERROR MESSAGES " button on that notification.
Open a forum reply here by clicking the "Reply " button.
Click the <CODE/>
icon on the post composer toolbar.
This will add the forum's code block markup (```
) to your reply to make sure the error messages are correctly formatted.
Press the Ctrl +V keyboard shortcut (Command +V for macOS users).
This will paste the compilation output into the code block.
Move the cursor outside of the code block markup before you add any additional text to your reply.
Click the "Reply " button to post the output.
In case the output is longer than the forum software will allow to be added to a post, you can instead save it to a .txt
file and then attach that file to a reply here:
Open any text editor program.
Paste the copied output into the text editor.
Save the file in .txt
format.
Open a forum reply here by clicking the "Reply " button.
Click the "Upload" icon ( ) on the post composer toolbar:
The "Open " dialog will open.
Select the .txt
file you saved from the "Open " dialog.
Click the "Open " button.
The dialog will close.
Click the "Reply " button to publish the post.
Alternatively, instead of using the "Upload" icon on the post composer toolbar as described in steps (5) - (7) above, you can simply drag and drop the .txt
file onto the post composer field to attach it.
FQBN: esp8266:esp8266:d1_mini
Using board 'd1_mini' from platform in folder: C:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2
Using core 'esp8266' from platform in folder: C:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2
"C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\tools\\python3\\3.7.2-post1/python3" -I "C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/mkbuildoptglobals.py" "C:\\Users\\jackron\\AppData\\Local\\Programs\\Arduino IDE\\resources\\app\\lib\\backend\\resources" 10607 "C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4" "C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4/core/build.opt" "C:\\Users\\jackron\\AppData\\Local\\Temp\\.arduinoIDE-unsaved202438-24788-1p6u6jb.ygbz\\Blink/Blink.ino.globals.h" "C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2\\cores\\esp8266/CommonHFile.h"
default_encoding: cp1252
Assume aggressive 'core.a' caching enabled.
Note: optional global include file 'C:\Users\jackron\AppData\Local\Temp\.arduinoIDE-unsaved202438-24788-1p6u6jb.ygbz\Blink\Blink.ino.globals.h' does not exist.
Read more at https://arduino-esp8266.readthedocs.io/en/latest/faq/a06-global-build-options.html
Detecting libraries used...
C:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\tools\xtensa-lx106-elf-gcc\3.1.0-gcc10.3-e5f9fec/bin/xtensa-lx106-elf-g++ -D__ets__ -DICACHE_FLASH -U__STRICT_ANSI__ -D_GNU_SOURCE -DESP8266 @C:\Users\jackron\AppData\Local\Temp\arduino\sketches\469DEBF93FC4301FE4990A4731B5B7D4/core/build.opt -IC:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2/tools/sdk/include -IC:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2/tools/sdk/lwip2/include -IC:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2/tools/sdk/libc/xtensa-lx106-elf/include -IC:\Users\jackron\AppData\Local\Temp\arduino\sketches\469DEBF93FC4301FE4990A4731B5B7D4/core -c @C:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2/tools/warnings/none-cppflags -Os -g -free -fipa-pta -Werror=return-type -mlongcalls -mtext-section-literals -fno-rtti -falign-functions=4 -std=gnu++17 -ffunction-sections -fdata-sections -fno-exceptions -DMMU_IRAM_SIZE=0x8000 -DMMU_ICACHE_SIZE=0x8000 -w -x c++ -E -CC -DNONOSDK22x_190703=1 -DF_CPU=80000000L -DLWIP_OPEN_SRC -DTCP_MSS=536 -DLWIP_FEATURES=1 -DLWIP_IPV6=0 -DARDUINO=10607 -DARDUINO_ESP8266_WEMOS_D1MINI -DARDUINO_ARCH_ESP8266 -DARDUINO_BOARD="ESP8266_WEMOS_D1MINI" -DARDUINO_BOARD_ID="d1_mini" -DFLASHMODE_DIO -IC:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2\cores\esp8266 -IC:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2\variants\d1_mini C:\Users\jackron\AppData\Local\Temp\arduino\sketches\469DEBF93FC4301FE4990A4731B5B7D4\sketch\Blink.ino.cpp -o nul
Generating function prototypes...
C:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\tools\xtensa-lx106-elf-gcc\3.1.0-gcc10.3-e5f9fec/bin/xtensa-lx106-elf-g++ -D__ets__ -DICACHE_FLASH -U__STRICT_ANSI__ -D_GNU_SOURCE -DESP8266 @C:\Users\jackron\AppData\Local\Temp\arduino\sketches\469DEBF93FC4301FE4990A4731B5B7D4/core/build.opt -IC:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2/tools/sdk/include -IC:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2/tools/sdk/lwip2/include -IC:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2/tools/sdk/libc/xtensa-lx106-elf/include -IC:\Users\jackron\AppData\Local\Temp\arduino\sketches\469DEBF93FC4301FE4990A4731B5B7D4/core -c @C:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2/tools/warnings/none-cppflags -Os -g -free -fipa-pta -Werror=return-type -mlongcalls -mtext-section-literals -fno-rtti -falign-functions=4 -std=gnu++17 -ffunction-sections -fdata-sections -fno-exceptions -DMMU_IRAM_SIZE=0x8000 -DMMU_ICACHE_SIZE=0x8000 -w -x c++ -E -CC -DNONOSDK22x_190703=1 -DF_CPU=80000000L -DLWIP_OPEN_SRC -DTCP_MSS=536 -DLWIP_FEATURES=1 -DLWIP_IPV6=0 -DARDUINO=10607 -DARDUINO_ESP8266_WEMOS_D1MINI -DARDUINO_ARCH_ESP8266 -DARDUINO_BOARD="ESP8266_WEMOS_D1MINI" -DARDUINO_BOARD_ID="d1_mini" -DFLASHMODE_DIO -IC:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2\cores\esp8266 -IC:\Users\jackron\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\3.1.2\variants\d1_mini C:\Users\jackron\AppData\Local\Temp\arduino\sketches\469DEBF93FC4301FE4990A4731B5B7D4\sketch\Blink.ino.cpp -o C:\Users\jackron\AppData\Local\Temp\2208149753\sketch_merged.cpp
C:\Users\jackron\AppData\Local\Arduino15\packages\builtin\tools\ctags\5.8-arduino11/ctags -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives C:\Users\jackron\AppData\Local\Temp\2208149753\sketch_merged.cpp
Compiling sketch...
"C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\tools\\python3\\3.7.2-post1/python3" -I "C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/signing.py" --mode header --publickey "C:\\Users\\jackron\\AppData\\Local\\Temp\\.arduinoIDE-unsaved202438-24788-1p6u6jb.ygbz\\Blink/public.key" --out "C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4/core/Updater_Signing.h"
"C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\tools\\xtensa-lx106-elf-gcc\\3.1.0-gcc10.3-e5f9fec/bin/xtensa-lx106-elf-g++" -D__ets__ -DICACHE_FLASH -U__STRICT_ANSI__ -D_GNU_SOURCE -DESP8266 "@C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4/core/build.opt" "-IC:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/sdk/include" "-IC:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/sdk/lwip2/include" "-IC:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/sdk/libc/xtensa-lx106-elf/include" "-IC:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4/core" -c "@C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/warnings/extra-cppflags" -Os -g -free -fipa-pta -Werror=return-type -mlongcalls -mtext-section-literals -fno-rtti -falign-functions=4 -std=gnu++17 -MMD -ffunction-sections -fdata-sections -fno-exceptions -DMMU_IRAM_SIZE=0x8000 -DMMU_ICACHE_SIZE=0x8000 -DNONOSDK22x_190703=1 -DF_CPU=80000000L -DLWIP_OPEN_SRC -DTCP_MSS=536 -DLWIP_FEATURES=1 -DLWIP_IPV6=0 -DARDUINO=10607 -DARDUINO_ESP8266_WEMOS_D1MINI -DARDUINO_ARCH_ESP8266 "-DARDUINO_BOARD=\"ESP8266_WEMOS_D1MINI\"" "-DARDUINO_BOARD_ID=\"d1_mini\"" -DFLASHMODE_DIO "-IC:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2\\cores\\esp8266" "-IC:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2\\variants\\d1_mini" "C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4\\sketch\\Blink.ino.cpp" -o "C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4\\sketch\\Blink.ino.cpp.o"
Compiling libraries...
Compiling core...
Using precompiled core: C:\Users\jackron\AppData\Local\Temp\arduino\cores\449af8e09ee6c434e306b23a6804672c\core.a
Linking everything together...
"C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\tools\\python3\\3.7.2-post1/python3" -I "C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/mkdir.py" -p "C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4/ld_h/"
"C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\tools\\python3\\3.7.2-post1/python3" -I "C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/cp.py" "C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/sdk/ld/eagle.flash.4m2m.ld" "C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4/ld_h/local.eagle.flash.ld.h"
"C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\tools\\xtensa-lx106-elf-gcc\\3.1.0-gcc10.3-e5f9fec/bin/xtensa-lx106-elf-gcc" -CC -E -P -DVTABLES_IN_FLASH -DMMU_IRAM_SIZE=0x8000 -DMMU_ICACHE_SIZE=0x8000 "C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4/ld_h/local.eagle.flash.ld.h" -o "C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4/local.eagle.flash.ld"
"C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\tools\\xtensa-lx106-elf-gcc\\3.1.0-gcc10.3-e5f9fec/bin/xtensa-lx106-elf-gcc" -CC -E -P -DVTABLES_IN_FLASH -DMMU_IRAM_SIZE=0x8000 -DMMU_ICACHE_SIZE=0x8000 "C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/sdk/ld/eagle.app.v6.common.ld.h" -o "C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4/local.eagle.app.v6.common.ld"
"C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\tools\\xtensa-lx106-elf-gcc\\3.1.0-gcc10.3-e5f9fec/bin/xtensa-lx106-elf-gcc" -fno-exceptions -Wl,-Map "-Wl,C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4/Blink.ino.map" -g "@C:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/warnings/extra-cflags" -Os -nostdlib -Wl,--no-check-sections -u app_entry -u _printf_float -u _scanf_float -Wl,-static "-LC:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/sdk/lib" "-LC:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/sdk/lib/NONOSDK22x_190703" "-LC:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4" "-LC:\\Users\\jackron\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\3.1.2/tools/sdk/libc/xtensa-lx106-elf/lib" -Tlocal.eagle.flash.ld -Wl,--gc-sections -Wl,-wrap,system_restart_local -Wl,-wrap,spi_flash_read -o "C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4/Blink.ino.elf" -Wl,--start-group "C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4\\sketch\\Blink.ino.cpp.o" "C:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\cores\\449af8e09ee6c434e306b23a6804672c\\core.a" -lhal -lphy -lpp -lnet80211 -llwip2-536-feat -lwpa -lcrypto -lmain -lwps -lbearssl -lespnow -lsmartconfig -lairkiss -lwpa2 -lstdc++ -lm -lc -lgcc -Wl,--end-group "-LC:\\Users\\jackron\\AppData\\Local\\Temp\\arduino\\sketches\\469DEBF93FC4301FE4990A4731B5B7D4"
collect2.exe: fatal error: CreateProcess: No such file or directory
compilation terminated.
exit status 1
Compilation error: exit status 1```
This is the OP. This issue is solved. It was an inbuilt antivirus or whatever software that caused these issues.
I used a totally different computer to upload the sketch and everything ran fine ( That 'totally different computer' was a Raspberry Pi ).
Ty all!
Thanks for taking the time to post an update with your findings! I'm glad it is working now.
Regards,
Per
system
Closed
October 7, 2024, 9:45am
7
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.