Arm Community
Site
Search
User
Site
Search
User
Groups
Research Collaboration and Enablement
DesignStart
Education Hub
Innovation
Open Source Software and Platforms
Forums
AI and ML forum
Architectures and Processors forum
Arm Development Platforms forum
Arm Development Studio forum
Arm Virtual Hardware forum
Automotive forum
Compilers and Libraries forum
Graphics, Gaming, and VR forum
High Performance Computing (HPC) forum
Infrastructure Solutions forum
Internet of Things (IoT) forum
Keil forum
Morello Forum
Operating Systems forum
SoC Design and Simulation forum
中文社区论区
Blogs
AI and ML blog
Announcements
Architectures and Processors blog
Automotive blog
Graphics, Gaming, and VR blog
High Performance Computing (HPC) blog
Infrastructure Solutions blog
Innovation blog
Internet of Things (IoT) blog
Operating Systems blog
Research Articles
SoC Design and Simulation blog
Tools, Software and IDEs blog
中文社区博客
Support
Arm Support Services
Documentation
Downloads
Training
Arm Approved program
Arm Design Reviews
Community Help
More
Cancel
Support forums
Arm Development Studio forum
Looking for a way to not place any static data in BSS section
Jump...
Cancel
Locked
Locked
Replies
3 replies
Subscribers
121 subscribers
Views
4176 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
Looking for a way to not place any static data in BSS section
Offline
Adam Openshaw
over 9 years ago
Note: This was originally posted on 2nd October 2012 at
http://forums.arm.com
The ARM compiler is very strict (and formidable) at placing zero initialized or uninitialized static data > 8 bytes into the BSS section to save space in the image. I have a use case where I do not want ANY static data in BSS. I want all of it to go into RO/RW-DATA sections only.
I've scoured the web looking for something similar or equivalent to the GNU C compiler's -fno-zero-initialized-in-bss option for RVCT, but cannot find anything. I'm compiling with DS-5.
Does anyone know if there is a way to compile without placing any static data into the BSS section? Placing static data into a BSS section is an optimization, and it's only natural that you should be able to disable it.
Thanks,
Meiyo
Parents
Offline
Adam Openshaw
over 9 years ago
Note: This was originally posted on 3rd October 2012 at
http://forums.arm.com
Hi Sasa,
Thanks for your response. I am aware that you are able to use the scatter loading procedure to place various sections like ZI and RW data in the same loadable region, but this is not quite what I am looking for.
My problem exists because the .bss sections have a filesize of 0 bytes. For my use case I need the static data to actually occupy space in the executable. The only way to do this seems to be to have the static data in the data section and not bss.
I'm looking for any way to get around this optimization. Being able to disable it is ideal, since it's nothing more than space optimization, but it's seeming less and less likely that this is supported for some reason.
Thanks again,
Meiyo
Cancel
Up
0
Down
Cancel
Reply
Offline
Adam Openshaw
over 9 years ago
Note: This was originally posted on 3rd October 2012 at
http://forums.arm.com
Hi Sasa,
Thanks for your response. I am aware that you are able to use the scatter loading procedure to place various sections like ZI and RW data in the same loadable region, but this is not quite what I am looking for.
My problem exists because the .bss sections have a filesize of 0 bytes. For my use case I need the static data to actually occupy space in the executable. The only way to do this seems to be to have the static data in the data section and not bss.
I'm looking for any way to get around this optimization. Being able to disable it is ideal, since it's nothing more than space optimization, but it's seeming less and less likely that this is supported for some reason.
Thanks again,
Meiyo
Cancel
Up
0
Down
Cancel
Children
No data