Wed Oct 2 23:45:25 1996 Geoffrey Noer <noer@cygnus.com>
authorGeoffrey Noer <noer@cygnus>
Thu, 3 Oct 1996 06:55:39 +0000 (06:55 +0000)
committerGeoffrey Noer <noer@cygnus>
Thu, 3 Oct 1996 06:55:39 +0000 (06:55 +0000)
        * emultmpl/pe.em: increase size of stack reserve to 0x2000000
        (necessary in order to compile parse.c in gcc sources under NT)

ld/ChangeLog
ld/emultempl/pe.em

index 5a23b81a7959d89ac6871734355e4cad413563c7..b5eb447fa56e1431ebd98efdb74c593b73b0dc4f 100644 (file)
@@ -2,6 +2,11 @@ Thu Oct  3 15:41:24 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
 
        * Makefile.in (mostlyclean): Move config.log to distclean.
 
+Wed Oct  2 23:45:25 1996  Geoffrey Noer  <noer@cygnus.com>
+
+        * emultmpl/pe.em: increase size of stack reserve to 0x2000000
+        (necessary in order to compile parse.c in gcc sources under NT)
+
 Wed Oct  2 14:49:10 1996  Ian Lance Taylor  <ian@cygnus.com>
 
        * lexsup.c (ld_options): Fix typo in --rpath-link description.
index e4696fa223ac5e49d38fae9bf5a4afb612109ed6..1f83102aa4d80375c3f87dd2226da109ff237236 100644 (file)
@@ -139,7 +139,7 @@ static definfo init[] =
   D(MajorSubsystemVersion,"__major_subsystem_version__", 4),
   D(MinorSubsystemVersion,"__minor_subsystem_version__", 0),
   D(Subsystem,"__subsystem__", 3),
-  D(SizeOfStackReserve,"__size_of_stack_reserve__", 0x100000),
+  D(SizeOfStackReserve,"__size_of_stack_reserve__", 0x2000000),
   D(SizeOfStackCommit,"__size_of_stack_commit__", 0x1000),
   D(SizeOfHeapReserve,"__size_of_heap_reserve__", 0x100000),
   D(SizeOfHeapCommit,"__size_of_heap_commit__", 0x1000),
@@ -460,7 +460,8 @@ sort_sections (s)
          lang_statement_union_type **p = &s->wild_statement.children.head;
 
          /* Is this the .idata section?  */
-         if (strncmp (s->wild_statement.section_name, ".idata", 6) == 0)
+         if (s->wild_statement.section_name != NULL
+             && strncmp (s->wild_statement.section_name, ".idata", 6) == 0)
            {
              /* Sort any children in the same archive.  Run through all
                 the children of this wild statement, when an
@@ -498,24 +499,25 @@ sort_sections (s)
             Don't sort them if \$ is not the last character (not sure if
             this is really useful, but it allows explicitly mentioning
             some \$ sections and letting the linker handle the rest).  */
-         {
-           char *q = strchr (s->wild_statement.section_name, '\$');
-
-           if (q && q[1] == 0)
-             {
-               lang_statement_union_type *end;
-               int count;
-
-               for (end = *p, count = 0; end; end = end->next)
-                 {
-                   if (end->header.type != lang_input_section_enum)
-                     abort ();
-                   count++;
-                 }
-               (void) sort_sections_1 (p, end, count, sort_by_section_name);
-             }
-           break;
-         }
+         if (s->wild_statement.section_name != NULL)
+           {
+             char *q = strchr (s->wild_statement.section_name, '\$');
+
+             if (q && q[1] == 0)
+               {
+                 lang_statement_union_type *end;
+                 int count;
+
+                 for (end = *p, count = 0; end; end = end->next)
+                   {
+                     if (end->header.type != lang_input_section_enum)
+                       abort ();
+                     count++;
+                   }
+                 (void) sort_sections_1 (p, end, count, sort_by_section_name);
+               }
+             break;
+           }
        }
        break;
       default:
@@ -533,7 +535,10 @@ gld_${EMULATION_NAME}_before_allocation()
   {
     LANG_FOR_EACH_INPUT_STATEMENT (is)
       {
-       ppc_process_before_allocation(is->the_bfd, &link_info);
+       if (!ppc_process_before_allocation(is->the_bfd, &link_info))
+         {
+           einfo("Errors encountered processing file %s", is->filename);
+         }
       }
   }
 
This page took 0.032253 seconds and 4 git commands to generate.