armlink Error: L6218E: Undefined symbol...

Parents
  • Note: This was originally posted on 6th July 2009 at http://forums.arm.com

    You could just create and link with an additional C file/object that provides stubs for the non-existent functions your other C files are importing, e.g.

    int temp(void) { return 0; }
    int temp2(void) { return 0; }
    int temp3(void) { return 0; }


    hth
    s.
Reply
  • Note: This was originally posted on 6th July 2009 at http://forums.arm.com

    You could just create and link with an additional C file/object that provides stubs for the non-existent functions your other C files are importing, e.g.

    int temp(void) { return 0; }
    int temp2(void) { return 0; }
    int temp3(void) { return 0; }


    hth
    s.
Children
No data
More questions in this forum