Urgent help needed.
| Wed, 2007-10-10 05:27 | |
|
Hi Friends, Error: L6218E: Undefined symbol icf_port_pltfm_init (referred from ICF.in). I made all libraries but main application is not linking the library , i think so. I have also gone through the link given http://www.arm.com/support/RVCT2.2_SP1_Errors_and_Warnings.pdf but couldn't get help. It's very very urgent .....................Please do the need full. |
|






Forum posts: 286
If you add / change anything in mmp you need to run bldmake command otherwise the changes wont reflect. The error is because of missing library or not included in to mmp.
Cheers,
Sri
Forum posts: 42
Thanku srikanth for ur reply.
I built each and every time when i changed MMP file .
I wondered because it built successfully on WINSCW and GCCE. But the same is not building for ARMV5.
Can u suggest me anything else.
Forum posts: 42
Thanku srikanth for ur reply.
I built each and every time when i changed MMP file .
I wondered because it built successfully on WINSCW and GCCE. But the same is not building for ARMV5.
Can u suggest me anything else.
Forum posts: 42
Thanku srikanth for ur reply.
I built each and every time when i changed MMP file .
I wondered because it built successfully on WINSCW and GCCE. But the same is not building for ARMV5.
Can u suggest me anything else.
Forum posts: 1233
Do your project contain a dependency on something that in turn has a dependency on something else?
like this:
App need Foo(), and Foo() exists in Foo.dll, but Foo() in turn needs Bar(), that is located in Bar.dll?
This kind of dependency is automatically resolved in winscw, by just including "LIBRARY foo.lib", but not for armv5, then you need to add also "LIBRARY bar.lib" to your mmp file of "App"
I don't know if it is also automatically resolved in GCCE (I havn't used it much) but possibly...