~ubuntu-branches/ubuntu/hoary/binutils/hoary

« back to all changes in this revision

Viewing changes to ld/testsuite/ld-scripts/size-2.t

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2005-03-18 13:07:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050318130752-j4i37zgqclj53b94
Tags: 2.15-5ubuntu2
debian/rules: Call pkgstriptranslations if present (the package does not
use debhelper, thus it does not happen automatically).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
PHDRS
 
2
{
 
3
  header PT_PHDR FILEHDR PHDRS ;
 
4
         
 
5
  image PT_LOAD FLAGS (5);
 
6
  tls PT_TLS FLAGS (4);
 
7
  
 
8
}
 
9
SECTIONS
 
10
{
 
11
  .text 0x100 : { *(.text) } :image
 
12
  .tdata : { *(.tdata) } :image :tls
 
13
  .tbss : { *(.tbss) } :image : tls
 
14
  .map : {
 
15
    LONG (SIZEOF (.text))
 
16
    LONG (SIZEOF (.data))
 
17
    LONG (SIZEOF (.bss))
 
18
    LONG (SIZEOF (.tdata))
 
19
    LONG (SIZEOF (.tbss))
 
20
  } :image
 
21
}