Re: [edk2-devel] [edk2-discuss] WriteSections64()
Russell Peterson
Hi, Ard.
toggle quoted messageShow quoted text
I compared this output to my previous edk2 build (uses gcc 7.3) and noticed that the .eh_frame sections seem to be new with the gcc 8.3 compiler. I added -fno-exceptions and -fno-unwind-tables to the aarch64 compiler options and everything builds. I'll need to run it and see if things work but seems better (at least it builds). I assume edk2 doesn't much care about stack unwinding? Regards, Russell
-----Original Message-----
From: Russell Peterson Sent: Sunday, June 16, 2019 10:12 AM To: Ard Biesheuvel <ard.biesheuvel@...> Cc: discuss@edk2.groups.io; edk2-devel-groups-io <devel@edk2.groups.io>; Laszlo Ersek <lersek@...> Subject: RE: [edk2-devel] [edk2-discuss] WriteSections64() Hi, Ard. -bash-4.2$ readelf -S /x/edk2/Build/RELEASE_GCC5/AARCH64/MdeModulePkg/Universal/Network/DpcDxe/DpcDxe/DEBUG/DpcDxe.dll There are 25 section headers, starting at offset 0x2a940: Section Headers: [Nr] Name Type Address Offset Size EntSize Flags Link Info Align [ 0] NULL 0000000000000000 00000000 0000000000000000 0000000000000000 0 0 0 [ 1] .text PROGBITS 0000000000000240 00000240 0000000000000320 0000000000000008 AX 0 0 32 [ 2] .rela.text RELA 0000000000000000 000175f8 00000000000002d0 0000000000000018 I 22 1 8 [ 3] .data PROGBITS 0000000000000560 00000560 0000000000000258 0000000000000000 WA 0 0 32 [ 4] .rela.data RELA 0000000000000000 000178c8 0000000000000060 0000000000000018 I 22 3 8 [ 5] .eh_frame PROGBITS 00000000000007c0 000007c0 0000000000000108 0000000000000000 A 0 0 8 [ 6] .rela.eh_frame RELA 0000000000000000 00017928 0000000000000120 0000000000000018 I 22 5 8 [ 7] .eh_frame_hdr PROGBITS 00000000000008c8 000008c8 000000000000004c 0000000000000000 A 0 0 4 [ 8] .rela RELA 0000000000000918 00000918 0000000000000060 0000000000000018 0 0 8 [ 9] .build-id PROGBITS 0000000000000978 00000978 0000000000000024 0000000000000000 0 0 4 [10] .debug_info PROGBITS 0000000000000000 0000099c 000000000000bc4c 0000000000000000 0 0 1 [11] .rela.debug_info RELA 0000000000000000 00017a48 0000000000011220 0000000000000018 I 22 10 8 [12] .debug_abbrev PROGBITS 0000000000000000 0000c5e8 00000000000017d3 0000000000000000 0 0 1 [13] .debug_line PROGBITS 0000000000000000 0000ddbb 00000000000031ed 0000000000000000 0 0 1 [14] .rela.debug_line RELA 0000000000000000 00028c68 0000000000000120 0000000000000018 I 22 13 8 [15] .debug_str PROGBITS 0000000000000000 00010fa8 0000000000002cd3 0000000000000001 MS 0 0 1 [16] .debug_loc PROGBITS 0000000000000000 00013c7b 0000000000000ba1 0000000000000000 0 0 1 [17] .rela.debug_loc RELA 0000000000000000 00028d88 00000000000013e0 0000000000000018 I 22 16 8 [18] .debug_aranges PROGBITS 0000000000000000 0001481c 00000000000000e0 0000000000000000 0 0 1 [19] .rela.debug_arang RELA 0000000000000000 0002a168 0000000000000138 0000000000000018 I 22 18 8 [20] .debug_ranges PROGBITS 0000000000000000 000148fc 0000000000000270 0000000000000000 0 0 1 [21] .rela.debug_range RELA 0000000000000000 0002a2a0 00000000000005d0 0000000000000018 I 22 20 8 [22] .symtab SYMTAB 0000000000000000 00014b70 00000000000027a8 0000000000000018 23 402 8 [23] .strtab STRTAB 0000000000000000 00017318 00000000000002da 0000000000000000 0 0 1 [24] .shstrtab STRTAB 0000000000000000 0002a870 00000000000000d0 0000000000000000 0 0 1 Key to Flags: W (write), A (alloc), X (execute), M (merge), S (strings), I (info), L (link order), O (extra OS processing required), G (group), T (TLS), C (compressed), x (unknown), o (OS specific), E (exclude), p (processor specific) -----Original Message----- From: Ard Biesheuvel <ard.biesheuvel@...> Sent: Saturday, June 15, 2019 4:29 AM To: Russell Peterson <russell@...> Cc: discuss@edk2.groups.io; edk2-devel-groups-io <devel@edk2.groups.io>; Laszlo Ersek <lersek@...> Subject: Re: [edk2-devel] [edk2-discuss] WriteSections64() On Sat, 15 Jun 2019 at 02:17, Russell Peterson <russell@...> wrote: Could you dump the section headers of such a .dll using readelf -S please?
|
|