This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

target not created error + Debug not responding

Rebuild started: Project: asm4-1
*** Using Compiler 'V6.14', folder: 'C:\Keil_v5\ARM\ARMCLANG\Bin'
Rebuild target 'Target 1'
"asm4-1.s", line 6: Error: A1167E: Invalid line start
6 00000000 ??
1 Error, 0 Warnings
assembling asm4-1.s...
linking...
.\Objects\asm4-1.axf: error: L6002U: Could not open file .\objects\asm4-1.o: No such file or directory
Not enough information to list image symbols.
Not enough information to list load addresses in the image map.
Finished: 2 information, 0 warning, 0 error and 1 fatal error messages.
".\Objects\asm4-1.axf" - 1 Error(s), 0 Warning(s).
Target not created.
Build Time Elapsed: 00:00:01

this was the error message

also whenever i use debugger the first time it just shows debug error message but the second time i get not responding message and keil just shuts down itself. Please help

  • 1. What's the Keil product in use?

    2. What version of this product is in use?

    3. What's the target (controller) in use?

  • "asm4-1.s", line 6: Error: A1167E: Invalid line start

    So open the file named "asm4-1.s" in your editor, and look at line 6 - is it valid.

    Note that you can very simply do that by double-clicking on the error message.

    Are you sure that this file is an ARM Assembler file - and not, say, a GCC assembler file ... ?

    http://www.keil.com/support/man/docs/armasm/

    .\Objects\asm4-1.axf: error: L6002U: Could not open file .\objects\asm4-1.o: No such file or directory

    asm4-1.o would be the object file generated when asm4-1.s is translated successfully.

    Obviously, because there was an error in the assembly, there would have been no object file generated - hence this error.