errors occurred in the back-end build process
-
- Posts: 65
- Joined: 14 May 2010, 16:01 PM
errors occurred in the back-end build process
Hi Don,
One of my readers bought your board and he got this error.
What could that be?
"C:\Program Files (x86)\ZBasic\zbasic.exe" --target-device=ZX1280n
--directory="C:\Users\Mark\ZBasic/" "compression-test1.bas"
Error: one or more errors occurred in the back-end build process for
"compression-test1.zxb"
Exit code: 1
It works on my board and this is what it does.
see attachment.
Paul Lamar
One of my readers bought your board and he got this error.
What could that be?
"C:\Program Files (x86)\ZBasic\zbasic.exe" --target-device=ZX1280n
--directory="C:\Users\Mark\ZBasic/" "compression-test1.bas"
Error: one or more errors occurred in the back-end build process for
"compression-test1.zxb"
Exit code: 1
It works on my board and this is what it does.
see attachment.
Paul Lamar
- Attachments
-
- compresion-test-programt2-output.jpg
- (232.28 KiB) Downloaded 1013 times
Re: errors occurred in the back-end build process
The back-end build process is the final stage of converting the ZBasic code to AVR executable code. Normally, this phase will complete without error but there are a number of things that can go awry. To determine what's going on we need more information.Paul Lamar wrote:What could that be?
One way to get this information is to add the --verbose option to the project file. You do this by selecting the "Open Project File" entry from the Options menu of the IDE. Your project file will appear in one of the tabbed windows. Add the following line near the the top of the project file:
Code: Select all
--verbose
It could be that your reader is using an older version of the compiler that might have a bug in it that your newer version doesn't have. You can determine the version of the compiler being used by selecting "About ZBasic IDE" from the Help menu. The compiler version is shown on the line below the IDE version number.
- Don Kinzer
-
- Posts: 65
- Joined: 14 May 2010, 16:01 PM
OK Don
This is what he got.
Paul Lamar
This is what he got.
Paul Lamar
- Attachments
-
- ZB_Screen_Capture_1.PNG
- (107.37 KiB) Downloaded 1434 times
-
- Posts: 65
- Joined: 14 May 2010, 16:01 PM
errors occurred in the back-end build process
HyperTerminal works...
On 5/20/2010 2:41 PM, ZBasic wrote:
On 5/20/2010 2:41 PM, ZBasic wrote:
Yes he is running windows 7 64 bit.
If that does not work for him I can work around it.
Is there a stand alone communication program that will
receive data from the AVR debug.print or console.write?
Paul Lamar
The version of the back-end compiler that ZBasic currently uses is not compatible with 64-bit Windows. Our tests indicate that it does run on Windows 7 32-bit.Paul Lamar wrote:Yes he is running windows 7 64 bit.
Many. I've used TeraTerm and Bray's Terminal. A search using "terminal emulator" and similar terms should turn up several options, most of which should be no-cost.Paul Lamar wrote:Is there a stand alone communication program that will
receive data from the AVR debug.print or console.write?
Last edited by dkinzer on 20 May 2010, 13:16 PM, edited 1 time in total.
- Don Kinzer