Changeset 52cd72b1 in rtems


Ignore:
Timestamp:
12/07/95 15:42:53 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
8442656a
Parents:
62c4e481
Message:

the bss start and end symbols were changed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/i960/cvme961/startup/linkcmds

    r62c4e481 r52cd72b1  
    2727            *(.text)
    2828            etext = ALIGN( 0x10 ) ;
    29 /*            _etext = .; */
     29/*            _etext = .; -- conflicts */
    3030        }
    3131        .data ADDR( .text ) + SIZEOF( .text ):
     
    3535            *(.data)
    3636            edata = ALIGN( 0x10 ) ;
    37 /*            _edata = .; */
     37/*            _edata = .; -- conflicts */
    3838        }
    3939        .bss ADDR( .data ) + SIZEOF( .data ):
    4040        {
    4141            bss_start = . ;
    42 /*            _bss_start = . ; */
     42            _bss_start = . ;
    4343            *(.bss)
    4444            *(COMMON)
Note: See TracChangeset for help on using the changeset viewer.