Arm Community
Site
Search
User
Site
Search
User
Support forums
Arm Development Studio forum
Any compiler option to remove runtime library __rt_lib_init option
Jump...
Cancel
Locked
Locked
Replies
2 replies
Subscribers
119 subscribers
Views
2672 views
Users
0 members are here
Options
Share
More actions
Cancel
Related
How was your experience today?
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
Any compiler option to remove runtime library __rt_lib_init option
Abhash Das
over 12 years ago
Note: This was originally posted on 7th August 2009 at
http://forums.arm.com
During my program execution I'm facing an undefined exception in runtime library [__rt_lib_init]. Without run time library it works fine. Suggest some compiler option to remove this part from my program execution. I'm working on 9E-S target board.
I think also any compiler or linker switch to remove particular symbol also helpful.
Cheers:)
Parents
Gopi Gopi
over 12 years ago
Note: This was originally posted on 7th October 2009 at
http://forums.arm.com
Even i am facing a similar issue. It goes to prefetch abort. Can anybody explain the reason for this ?
I solved it by adding the following code:
EXPORT __rt_lib_init
IMPORT main
__rt_lib_init
LDR R0, =main
BX R0
But why should i get prefetch abort if i call __rt_lib_init ?
Note:
The arm core being used here is ARM7TDMI-S (no cache).
Thanks in advance,
Gopu.S
Cancel
Vote up
0
Vote down
Cancel
Reply
Gopi Gopi
over 12 years ago
Note: This was originally posted on 7th October 2009 at
http://forums.arm.com
Even i am facing a similar issue. It goes to prefetch abort. Can anybody explain the reason for this ?
I solved it by adding the following code:
EXPORT __rt_lib_init
IMPORT main
__rt_lib_init
LDR R0, =main
BX R0
But why should i get prefetch abort if i call __rt_lib_init ?
Note:
The arm core being used here is ARM7TDMI-S (no cache).
Thanks in advance,
Gopu.S
Cancel
Vote up
0
Vote down
Cancel
Children
No data