Arm Community
Site
Search
User
Site
Search
User
Support forums
Arm Development Studio forum
armlink Error: L6218E: Undefined symbol...
Jump...
Cancel
Locked
Locked
Replies
7 replies
Subscribers
118 subscribers
Views
9348 views
Users
0 members are here
Options
Share
More actions
Cancel
Related
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
armlink Error: L6218E: Undefined symbol...
Abhash Das
over 12 years ago
Parents
Simon Craske
over 12 years ago
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.
Cancel
Vote up
0
Vote down
Cancel
Reply
Simon Craske
over 12 years ago
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.
Cancel
Vote up
0
Vote down
Cancel
Children
No data