Not sure if I missed a patch or addon or something.
On all three machine I loaded it. XP, Win10 and Win10. With compatability mode on for Win10 machines. Press F7 and get:
Error: one or more errorsoccurred in the back-end build process for "test.esp"
I selected the ESP for the target. Used
Sub Main()
'
End Sub
ALSO
Sub Main()
debug.print "TEST"
End Sub
Loaded the ESP8266 and getting error with a simple print
Re: Loaded the ESP8266 and getting error with a simple print
In order to get more information about what's going wrong, add the following two lines to your project file near the top. The project file can be opened by selecting "Open Project File" from the Options menu.lhatch wrote:Error: one or more errors occurred in the back-end build process for "test.esp"
Code: Select all
--version
--verbose
--keep-files
Once these lines are in place, hit F7 again. You should see much more text displayed in the Output window. You can select all of the emitted text and use ctrl-C to copy it to the clipboard and then paste it here in a reply. Depending on what is in the output, it may be useful to get the generated files later.
- Don Kinzer