From c4a59af8c1f154a5203da16378fb90f93f3fb3ba Mon Sep 17 00:00:00 2001 From: Ard Biesheuvel Date: Mon, 3 Aug 2015 08:23:59 +0000 Subject: BaseTools IA32/X64: Use GccBase.lds instead of gcc*-ld-script These scripts all now have the same contents, so we only need to use GccBase.lds. Therefore we can delete gcc-4K-align-ld-script, gcc4.4-ld-script and gcc4.9-ld-script. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel Reviewed-by: Jordan Justen Tested-by: Liming Gao git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18142 6f19259b-4bc3-4df7-8a09-765794883524 --- BaseTools/Scripts/gcc-4K-align-ld-script | 38 -------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 BaseTools/Scripts/gcc-4K-align-ld-script (limited to 'BaseTools/Scripts/gcc-4K-align-ld-script') diff --git a/BaseTools/Scripts/gcc-4K-align-ld-script b/BaseTools/Scripts/gcc-4K-align-ld-script deleted file mode 100644 index 51daae04d8..0000000000 --- a/BaseTools/Scripts/gcc-4K-align-ld-script +++ /dev/null @@ -1,38 +0,0 @@ -/* OUTPUT_FORMAT(efi-bsdrv-x86_64) */ -SECTIONS -{ - /* . = 0 + SIZEOF_HEADERS; */ - . = PECOFF_HEADER_SIZE; - .text : ALIGN(CONSTANT(COMMONPAGESIZE)) - { - *(.text .stub .text.* .gnu.linkonce.t.*) - *(.rodata .rodata.* .gnu.linkonce.r.*) - *(.got .got.*) - } - .data : ALIGN(CONSTANT(COMMONPAGESIZE)) - { - *( - .data .data.* .gnu.linkonce.d.* - .bss .bss.* - *COM* - ) - } - .eh_frame : ALIGN(CONSTANT(COMMONPAGESIZE)) - { - KEEP (*(.eh_frame)) - } - .rela : ALIGN(CONSTANT(COMMONPAGESIZE)) - { - *(.rela .rela.*) - } - /DISCARD/ : { - *(.note.GNU-stack) *(.gnu_debuglink) - *(.interp) - *(.dynsym) - *(.dynstr) - *(.dynamic) - *(.hash) - *(.comment) - } -} - -- cgit v1.2.3