/*-------------------------------------------------------------------------+ | linkcmds v1.1 - PC386 BSP - 1997/08/07 +--------------------------------------------------------------------------+ | This file contains directives for the GNU linker which are specific to the | PC386 bsp. +--------------------------------------------------------------------------+ | (C) Copyright 1997 - | - NavIST Group - Real-Time Distributed Systems and Industrial Automation | | http://pandora.ist.utl.pt | | Instituto Superior Tecnico * Lisboa * PORTUGAL +--------------------------------------------------------------------------+ | Disclaimer: | | This file is provided "AS IS" without warranty of any kind, either | expressed or implied. +--------------------------------------------------------------------------+ | This code is based on: | linkcmds,v 1.3 1995/12/19 20:06:58 joel Exp - FORCE CPU386 BSP | With the following copyright notice: | ************************************************************************** | * COPYRIGHT (c) 1989-1997. | * On-Line Applications Research Corporation (OAR). | * Copyright assigned to U.S. Government, 1994. | * | * The license and distribution terms for this file may be | * found in found in the file LICENSE in this distribution or at | * http://www.OARcorp.com/rtems/license.html. | ************************************************************************** | | $Id$ +--------------------------------------------------------------------------*/ SECTIONS { .text : { _text_start = . ; *(.text) . = ALIGN (16); *(.eh_fram) . = ALIGN (16); /* * C++ constructors */ __CTOR_LIST__ = .; LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2) *(.ctors) LONG(0) __CTOR_END__ = .; __DTOR_LIST__ = .; LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2) *(.dtors) LONG(0) __DTOR_END__ = .; _etext = ALIGN( 0x10 ) ; } .rodata ADDR( .text ) + SIZEOF( .text ): { _rodata_start = . ; *(.rodata) _erodata = ALIGN( 0x10 ) ; } .data ADDR( .rodata ) + SIZEOF( .rodata ): { _data_start = . ; *(.data) _edata = ALIGN( 0x10 ) ; } .bss ADDR( .data ) + SIZEOF( .data ): { _bss_start = . ; *(.bss) *(COMMON) _end = . ; __end = . ; } }