]> Git Repo - binutils.git/blobdiff - ld/emultempl/genelf.em
Add output_type to bfd_link_info
[binutils.git] / ld / emultempl / genelf.em
index cc046feb881e2be65695829231c2dc14c4ffd33a..7dc5e72250e28a371fec57f13b41f91142870148 100644 (file)
@@ -37,7 +37,7 @@ gld${EMULATION_NAME}_after_open (void)
 
   after_open_default ();
 
-  if (link_info.relocatable)
+  if (bfd_link_relocatable (&link_info))
     for (ibfd = link_info.input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
       if ((syms = bfd_get_outsymbols (ibfd)) != NULL
          && bfd_get_flavour (ibfd) == bfd_target_elf_flavour)
@@ -52,7 +52,7 @@ gld${EMULATION_NAME}_after_open (void)
 static void
 gld${EMULATION_NAME}_before_allocation (void)
 {
-  if (link_info.relocatable
+  if (bfd_link_relocatable (&link_info)
       && !_bfd_elf_size_group_sections (&link_info))
     einfo ("%X%P: can not size group sections: %E\n");
   before_allocation_default ();
This page took 0.023377 seconds and 4 git commands to generate.