Use this script to create an C/C++ file which will have more than 65536
sections:
for i in `seq 1 7`; do
echo "int var_$i __attribute__((section(\"section_$i\"))) = $i;"
done
Compile it. Run readelf -S on the resulting object file. Note section 0:
[ 0] NULL
--- Additional Comments From hjl dot tools at gmail dot com 2008-03-07
16:53 ---
(In reply to comment #12)
> Could you please e-mail me "good" and "bad"? I wonder if PPC is similar to
> MIPS
> in using small data sections.
"good" and "bad" are identical:
bash-3.2$ readelf -Ss good
Th
--- Additional Comments From evandro at yahoo dot com 2008-03-07 16:46
---
Could you please e-mail me "good" and "bad"? I wonder if PPC is similar to MIPS
in using small data sections.
--
http://sourceware.org/bugzilla/show_bug.cgi?id=5866
--- You are receiving this mail becaus