-
Notifications
You must be signed in to change notification settings - Fork 132
Sloeber 4.3.3, partial recompiling on ESP8266 Arduino Core 3.0.0 not working #1352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
your output shows a incorrect filename and the build fails. So partial recompile starts but fails Have a look at what is inside sloeber.ino.cpp |
Path is wrong: ' |
thanks for the quick reply, unfortunately the answers do not help, as I did nothing with the path I stripped the problem down to the absolute minimum:
2.) just insert some line e.g. "Serial.begin(9600);" in setup and rebuilt by clicking the check mark from the Arduino toolbar
|
Generated makefile has some errors because path mentioned in error looks wrong |
See issue #1198 Root cause is a bug in the GCC 10 compiler which is included in the ESP8266 3.0 release. Will probably also be fixed when esp8266/Arduino@74d675c is included (is in master but not yet in a released version). |
Describe the bug
on ESP8266 Arduino Core 3.0.0 after a code change (in the main .ino file) the changes are not compiled.
I always have to "clean project" "rebuild project"
To Reproduce
this works, and is expected behavior for 3.0.0 also
1.) have ESP8266 Arduino Core 2.7.4 installed, and configured in the projects properties
2.) have a project with it, built it and flash it (currently it is an IOD-09Th, but hardware is not relevant, same on Huzzah)
3.) change a line of code
4.) built again (only changes are rebuild), so takes seconds, console output:
5.) upload --> changes are included
this does not work:
1.) have ESP8266 Arduino Core 3.0.0 installed, and configured in the projects properties
2.) have a project with it, built it and flash it
3.) change a line of code
4.) built again , console output:
5.) upload --> changes are not included
workaround
1.) clean project
2.) rebuild project (takes minutes as all the core is rebuild)
Desktop:
-Windows 10 Home, 21H1
Any comments how to rebuild projects with core 3.0.0 without rebuilding the entire one (and waiting minutes) are appreciated
Is there a way to "clean" just a single file to reduce rebuild time?
The text was updated successfully, but these errors were encountered: