GTBecker wrote:[...]but with no hint of what or where the error is. Where do I go from here?
The source of the error is (mostly) beyond your control. The only recourse that you have is to write your code differently to avoid having the ZBasic compiler generate code that leads to the back-end compilation error.
You could add the
--keep-files option to your project file. This will prevent the ZBasic compiler from deleting the intermediate (C source code) files and the file that captures the error output. You could also add the
--verbose option which will display the output from the back-end compile operation in the IDE's output window. Either way, you'll be able to see the error message that is output by the back-end compile operation, look at the generated C code in the vicinity of the error and possibly be able to determine what's wrong with the generated code. Even so, there's not much you can do about it.
If you can produce a small test case that generates the same error, we can probably correct it fairly quickly. If you don't want to take the time to do that, you can send me your entire project and we'll take a look at it.