Generic ELF target group signature symbol
[deliverable/binutils-gdb.git] / ld / emultempl / irix.em
index 19511dd31acfea85aa5d92d728cc7951ebd048cc..ddd5fd69e5c512458b1f558fefb453abb985cf87 100644 (file)
@@ -1,11 +1,11 @@
 # This shell script emits a C file. -*- C -*-
-#   Copyright 2004 Free Software Foundation, Inc.
+#   Copyright (C) 2004-2019 Free Software Foundation, Inc.
 #
-# This file is part of GLD, the Gnu Linker.
+# This file is part of the GNU Binutils.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
+# the Free Software Foundation; either version 3 of the License, or
 # (at your option) any later version.
 #
 # This program is distributed in the hope that it will be useful,
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
+# MA 02110-1301, USA.
 #
 
-cat >>e${EMULATION_NAME}.c <<EOF
+fragment <<EOF
 
 #include "ld.h"
 #include "ldmain.h"
@@ -31,11 +32,13 @@ cat >>e${EMULATION_NAME}.c <<EOF
 static void
 irix_after_open (void)
 {
-  if (link_info.shared && command_line.soname == 0)
-    command_line.soname = basename (bfd_get_filename (output_bfd));
+  if (bfd_link_dll (&link_info) && command_line.soname == 0)
+    command_line.soname
+      = (char *) lbasename (bfd_get_filename (link_info.output_bfd));
 
   gld${EMULATION_NAME}_after_open ();
 }
 EOF
 
 LDEMUL_AFTER_OPEN=irix_after_open
+source_em "${srcdir}/emultempl/mipself.em"
This page took 0.027737 seconds and 4 git commands to generate.