This file is indexed.

/usr/lib/alpha-linux-gnu/ldscripts/alpha.xe is in binutils-alpha-linux-gnu 2.30-15ubuntu1.

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
/* Script for -z separate-code: generate normal executables with separate code segment */
/* Copyright (C) 2014-2018 Free Software Foundation, Inc.
   Copying and distribution of this script, with or without modification,
   are permitted in any medium without royalty provided the copyright
   notice and this notice are preserved.  */
OUTPUT_FORMAT("ecoff-littlealpha")
SEARCH_DIR("=/usr/alpha-linux-gnuecoff/lib");
ENTRY (__start)
SECTIONS
{
  . = 0x120000000 + SIZEOF_HEADERS;
  .text : {
     _ftext = . ;
     __istart = . ;
     *(.init)
     LONG (0x6bfa8001)
     eprol  =  .;
    *(.text)
     __fstart = . ;
     *(.fini)
     LONG (0x6bfa8001)
     _etext  =  .;
  }
  .rdata : {
    *(.rdata)
  }
  .rconst : {
    *(.rconst)
  }
  .pdata : {
     _fpdata = .;
    *(.pdata)
  }
  . = 0x140000000;
  .data : {
     _fdata = .;
    *(.data)
    CONSTRUCTORS
  }
  .xdata : {
    *(.xdata)
  }
   _gp = ALIGN (16) + 0x8000;
  .lit8 : {
    *(.lit8)
  }
  .lita : {
    *(.lita)
  }
  .sdata : {
    *(.sdata)
  }
   _EDATA  =  .;
   _FBSS = .;
  .sbss : {
    *(.sbss)
    *(.scommon)
  }
  .bss : {
    *(.bss)
    *(COMMON)
  }
   _end = .;
}