OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [binutils-2.20.1/] [gold/] [testsuite/] [script_test_3.t] - Diff between revs 816 and 818

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 816 Rev 818
/* script_test_3.t -- linker script test 3 for gold
/* script_test_3.t -- linker script test 3 for gold
   Copyright 2008 Free Software Foundation, Inc.
   Copyright 2008 Free Software Foundation, Inc.
   Written by Ian Lance Taylor .
   Written by Ian Lance Taylor .
   This file is part of gold.
   This file is part of gold.
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
   MA 02110-1301, USA.  */
   MA 02110-1301, USA.  */
SECTIONS
SECTIONS
{
{
  /* With luck this will work everywhere.  */
  /* With luck this will work everywhere.  */
  . = 0x10000000;
  . = 0x10000000;
  /* With luck this will be enough to get the program working.  */
  /* With luck this will be enough to get the program working.  */
  .interp : { *(.interp) } :text :interp
  .interp : { *(.interp) } :text :interp
  .text : { *(.text) } :text
  .text : { *(.text) } :text
  . += 0x100000;
  . += 0x100000;
  . = ALIGN(0x100);
  . = ALIGN(0x100);
  .dynamic : { *(.dynamic) } :data :dynamic
  .dynamic : { *(.dynamic) } :data :dynamic
  .data : { *(.data) } :data
  .data : { *(.data) } :data
  . += 0x100000;
  . += 0x100000;
  . = ALIGN(0x100);
  . = ALIGN(0x100);
  .bss : { *(.bss) } :bss
  .bss : { *(.bss) } :bss
}
}
PHDRS
PHDRS
{
{
  text PT_LOAD FILEHDR PHDRS FLAGS(5);
  text PT_LOAD FILEHDR PHDRS FLAGS(5);
  interp PT_INTERP;
  interp PT_INTERP;
  dynamic PT_DYNAMIC FLAGS(4);
  dynamic PT_DYNAMIC FLAGS(4);
  data PT_LOAD;
  data PT_LOAD;
  bss PT_LOAD;
  bss PT_LOAD;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.