I am trying to compile the marlin firmware for 3d printers and I don't know what the problem is. The last few lines of the verbose compile is listed here because the 19k line file doesn't fit in this post. I attached the file in case anyone needs to see the whole thing. The entire sketch is located at Download | Marlin Firmware and it is the latest release, 2.0.7.2.
If the line just before the error message is the cause, it appears to be looking for a folder "arduino_build_379667" and that folder does exist at C:\Users\Mike\AppData\Local\Temp\arduino_build_379667
I believe the reason for this error is that Windows has a maximum command length of 32767 characters and Marlin has hundreds of files, resulting in the compilation commands sometimes being over 32767.
Arduino has already made a fix for this issue in the code that handles compilation for the Arduino IDE, but I'm not sure how long it will be before that fix becomes available with the Arduino IDE. The fix is already available in releases of other official Arduino development software though.
I see Pert posted the solution while I was typing. The last line generated by the IDE in your Error.txt file is 36,737 characters long, well in access of the command length limitation on Windows.
I'm glad to hear it's working with Arduino Pro IDE!
I believe that, just a few hours ago, the fix for this issue made it into the hourly build of the classic Arduino IDE, but it sounds like the Arduino Pro IDE already has you taken care of.