Errors upon debug and release

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Errors upon debug and release

770 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by jx1 on Sun May 19 20:39:15 MST 2013
Hi everyone,
I am unsure of what does the errors mean. When I debug it shows me
_________________________________________________________________________________
10:30:34 **** Incremental Build of configuration Debug for project myproject ****
make all
make: Nothing to be done for `all'.

10:30:34 Build Finished (took 83ms)
_______________________________________________________________________________
The errors are " make: *** [cstartup_M.o] Error 1 " , " make: *** [myproject.axf] Error 1"  and " make: *** No rule to make target `cstartup_M.o', needed by `myproject.axf' ".
_______________________________________________________________________________
More errors surfaced when I did a release.Due to the word constraint, I placed the errors in a text file as shown below.


Anyone knows how to solve these errors?:confused:
0 Kudos
Reply
3 Replies

760 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by TheFallGuy on Mon May 20 02:18:30 MST 2013
Start by reading the getting started guide. Funnily enough, this tell you how to get started...

You are not "debugging" an assembler source file, you are trying to assemble ('compile') it. LPCXpresso uses GNU for its compiler and assembler. You must make sure that any assembler files you use are compatible with GNU syntax (and the vast majority are).

EDIT:
If you are using DALI, have you seen this?
http://www.lpcware.com/content/project/dali-lpc-microcontrollers
Using this will probably save you are lot of time.
0 Kudos
Reply

760 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by jx1 on Mon May 20 01:17:06 MST 2013
Thefallguy:
Yes,cstartup_M.s is a assembler file which I took from the software code for DALI. Are there other ways that the LPCXpresso v5 can debug an assembler source file?

How do I create a new project wizard using LPCXpresso v5.2.4 ?
0 Kudos
Reply

760 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by TheFallGuy on Mon May 20 00:34:50 MST 2013
looks like cstartup_M.s is an assembler file you have been supplied from somewhere else and uses a different assembler syntax. Why don't you use the cr_startup.c file created by the New Project wizard? This is known to work properly
0 Kudos
Reply