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

Aduc702x.s Compiling error

Note: This was originally posted on 14th March 2011 at http://forums.arm.com

: Error: L6218E: Undefined symbol DAbt_Handler (referred from aduc702x.o)
Can somebody help with this kind of error? How to resolve it? The thing is i didnt call "aduc702x.o" extension file. Does it relate to somewhere else?
PS: There is no error upon the compilation of my coding.
Parents
  • Note: This was originally posted on 14th March 2011 at http://forums.arm.com

    aduc702x.o is an object file, most likely generated from aduc702x.c or aduc702x.s.  If this is one of your source files then it is being passed directly to the linker.  If not, then it comes from one of the libraries your project is using.  (A library is basically just a packaged bundle of .o files).

    This object is referencing a label called "DAbt_Handler", which none of the objects or libraries in your project define.

    So the first step is to work out where aduc702x.o comes from.  Is it one of your sources or from a library.  If a library, then check with however provided the library.
Reply
  • Note: This was originally posted on 14th March 2011 at http://forums.arm.com

    aduc702x.o is an object file, most likely generated from aduc702x.c or aduc702x.s.  If this is one of your source files then it is being passed directly to the linker.  If not, then it comes from one of the libraries your project is using.  (A library is basically just a packaged bundle of .o files).

    This object is referencing a label called "DAbt_Handler", which none of the objects or libraries in your project define.

    So the first step is to work out where aduc702x.o comes from.  Is it one of your sources or from a library.  If a library, then check with however provided the library.
Children
No data