/usr/amd64-mingw32msvc/lib/ldscripts/i386pep.xr is in mingw32-binutils 2.20-0.2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | /* Script for ld -r: link without relocation */
OUTPUT_FORMAT(pe-x86-64)
SEARCH_DIR("/usr/amd64-mingw32msvc/lib");
SECTIONS
{
.text :
{
*(.text)
*(.glue_7t)
*(.glue_7)
/* ??? Why is .gcc_exc here? */
}
/* The Cygwin32 library uses a section to avoid copying certain data
on fork. This used to be named ".data". The linker used
to include this between __data_start__ and __data_end__, but that
breaks building the cygwin32 dll. Instead, we name the section
".data_cygwin_nocopy" and explictly include it after __data_end__. */
.data :
{
*(.data)
*(.data2)
*(.jcr)
}
.rdata :
{
*(.rdata)
*(.rdata_runtime_pseudo_reloc)
}
.eh_frame :
{
*(.eh_frame)
}
.pdata :
{
*(.pdata)
}
.bss :
{
*(.bss)
*(COMMON)
}
.edata :
{
*(.edata)
}
/DISCARD/ :
{
*(.debug$S)
*(.debug$T)
*(.debug$F)
*(.drectve)
}
.idata :
{
/* This cannot currently be handled with grouped sections.
See pep.em:sort_sections. */
}
.CRT :
{
/* ___crt_xl_end__ is defined in the TLS Directory support code */
}
.tls :
{
}
.endjunk :
{
/* end is deprecated, don't use it */
}
.rsrc :
{
*(.rsrc)
}
.reloc :
{
*(.reloc)
}
.stab :
{
*(.stab)
}
.stabstr :
{
*(.stabstr)
}
/* DWARF debug sections.
Symbols in the DWARF debugging sections are relative to the beginning
of the section. Unlike other targets that fake this by putting the
section VMA at 0, the PE format will not allow it. */
/* DWARF 1.1 and DWARF 2. */
.debug_aranges :
{
*(.debug_aranges)
}
.debug_pubnames :
{
*(.debug_pubnames)
}
.debug_pubtypes :
{
*(.debug_pubtypes)
}
/* DWARF 2. */
.debug_info :
{
*(.debug_info) *(.gnu.linkonce.wi.*)
}
.debug_abbrev :
{
*(.debug_abbrev)
}
.debug_line :
{
*(.debug_line)
}
.debug_frame :
{
*(.debug_frame)
}
.debug_str :
{
*(.debug_str)
}
.debug_loc :
{
*(.debug_loc)
}
.debug_macinfo :
{
*(.debug_macinfo)
}
/* SGI/MIPS DWARF 2 extensions. */
.debug_weaknames :
{
*(.debug_weaknames)
}
.debug_funcnames :
{
*(.debug_funcnames)
}
.debug_typenames :
{
*(.debug_typenames)
}
.debug_varnames :
{
*(.debug_varnames)
}
/* DWARF 3. */
.debug_ranges :
{
*(.debug_ranges)
}
}
|