]> Git Repo - binutils.git/commitdiff
Mon Oct 5 14:07:37 1992 Ian Lance Taylor ([email protected])
authorIan Lance Taylor <[email protected]>
Mon, 5 Oct 1992 21:08:41 +0000 (21:08 +0000)
committerIan Lance Taylor <[email protected]>
Mon, 5 Oct 1992 21:08:41 +0000 (21:08 +0000)
* aout.sc-sh, m68kcoff.sc-sh: set __bss_start to the start of the
.bss segment.

ld/ChangeLog
ld/aout.sc-sh
ld/m68kcoff.sc-sh

index 7f222bd3171ce5529698f1e28bc24f332a761912..976a49258428f46da7d3293a8a2436e4aec52f4a 100644 (file)
@@ -1,3 +1,8 @@
+Mon Oct  5 14:07:37 1992  Ian Lance Taylor  ([email protected])
+
+       * aout.sc-sh, m68kcoff.sc-sh: set __bss_start to the start of the
+       .bss segment.
+
 Mon Oct  5 08:55:14 1992  Steve Chamberlain  ([email protected])
 
        * ldmain.c (linear_library): don't even think about processing 
index 7fcea058d06d831042b38a3d400cdb6779e82627..5a5bd24538c207870136933237c20fc47bb0ee9c 100755 (executable)
@@ -20,6 +20,7 @@ SECTIONS
   }
   .bss ${RELOCATING+SIZEOF(.data) + ADDR(.data)} :
   {
+    ${RELOCATING+ __bss_start = .};
    *(.bss)
    *(COMMON)
    ${RELOCATING+_end = . };
index 485f3bb8ed10bf9e8cb1482c0a74a7e1a9d2c65d..393688fcfb74400456cac904abe3adc013966d9d 100644 (file)
@@ -29,6 +29,7 @@ SECTIONS
   } ${RELOCATING+ > data}
   .bss   SIZEOF(.data) + ADDR(.data) :
   {                                    
+    ${RELOCATING+ __bss_start = .};
    *(.bss)
    *(COMMON)
      ${RELOCATING+ _end = ALIGN(0x8)};
This page took 0.041174 seconds and 4 git commands to generate.