Changeset 108794 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/BaseTools/Scripts/GccBase.lds
- Timestamp:
- Mar 31, 2025 11:31:09 AM (2 weeks ago)
- svn:sync-xref-src-repo-rev:
- 168237
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-164365 /vendor/edk2/current 103735-103757,103769-103776,129194-168232
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/BaseTools/Scripts/GccBase.lds
r101291 r108794 1 1 /** @file 2 2 3 Unified linker script for GCC based builds3 Unified linker script for GCC and CLANG based builds 4 4 5 Copyright (c) 2010 - 20 15, Intel Corporation. All rights reserved.<BR>5 Copyright (c) 2010 - 2021, Intel Corporation. All rights reserved.<BR> 6 6 Copyright (c) 2015, Linaro Ltd. All rights reserved.<BR> 7 7 (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> … … 10 10 11 11 **/ 12 13 PHDRS { 14 text PT_LOAD FLAGS(5); /* R_X */ 15 data PT_LOAD FLAGS(6); /* RW_ */ 16 dynamic PT_DYNAMIC FLAGS(4); /* R__ */ 17 } 12 18 13 19 SECTIONS { … … 22 28 23 29 .text : ALIGN(CONSTANT(COMMONPAGESIZE)) { 30 KEEP(*(.entry)) 24 31 *(.text .text.* .stub .gnu.linkonce.t.*) 25 32 *(.rodata .rodata.* .gnu.linkonce.r.*) … … 35 42 */ 36 43 *:AutoGen.obj(.data.g*Guid) 37 } 44 } :text 38 45 39 46 /* … … 46 53 *(.data .data.* .gnu.linkonce.d.*) 47 54 *(.bss .bss.*) 48 } 55 } :data 49 56 50 57 .eh_frame ALIGN(CONSTANT(COMMONPAGESIZE)) : { 51 58 KEEP (*(.eh_frame)) 52 59 } 60 61 .dynamic : { *(.dynamic) } :data :dynamic 53 62 54 63 .rela (INFO) : { … … 58 67 .hii : ALIGN(CONSTANT(COMMONPAGESIZE)) { 59 68 KEEP (*(.hii)) 60 } 69 } :data 61 70 62 71 .got : { … … 82 91 *(.dynsym) 83 92 *(.dynstr) 84 *(.dynamic)85 93 *(.hash .gnu.hash) 86 94 *(.comment)
Note:
See TracChangeset
for help on using the changeset viewer.