1 /* Collect static initialization info into data structures that can be
2 traversed by C++ initialization and finalization routines.
3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009
5 Free Software Foundation, Inc.
6 Contributed by Chris Smith (csmith@convex.com).
7 Heavily modified by Michael Meissner (meissner@cygnus.com),
8 Per Bothner (bothner@cygnus.com), and John Gilmore (gnu@cygnus.com).
10 This file is part of GCC.
12 GCC is free software; you can redistribute it and/or modify it under
13 the terms of the GNU General Public License as published by the Free
14 Software Foundation; either version 3, or (at your option) any later
17 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
18 WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 You should have received a copy of the GNU General Public License
23 along with GCC; see the file COPYING3. If not see
24 <http://www.gnu.org/licenses/>. */
27 /* Build tables of static constructors and destructors and run ld. */
31 #include "coretypes.h"
34 #if ! defined( SIGCHLD ) && defined( SIGCLD )
35 # define SIGCHLD SIGCLD
38 #ifndef LIBRARY_PATH_ENV
39 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
50 /* On certain systems, we have code that works by scanning the object file
51 directly. But this code uses system-specific header files and library
52 functions, so turn it off in a cross-compiler. Likewise, the names of
53 the utilities are not correct for a cross-compiler; we have to hope that
54 cross-versions are in the proper directories. */
56 #ifdef CROSS_DIRECTORY_STRUCTURE
57 #undef OBJECT_FORMAT_COFF
59 #undef REAL_LD_FILE_NAME
60 #undef REAL_NM_FILE_NAME
61 #undef REAL_STRIP_FILE_NAME
64 /* If we cannot use a special method, use the ordinary one:
65 run nm to find what symbols are present.
66 In a cross-compiler, this means you need a cross nm,
67 but that is not quite as unpleasant as special headers. */
69 #if !defined (OBJECT_FORMAT_COFF)
70 #define OBJECT_FORMAT_NONE
73 #ifdef OBJECT_FORMAT_COFF
82 /* Many versions of ldfcn.h define these. */
90 /* Some systems have an ISCOFF macro, but others do not. In some cases
91 the macro may be wrong. MY_ISCOFF is defined in tm.h files for machines
92 that either do not have an ISCOFF macro in /usr/include or for those
96 #define MY_ISCOFF(X) ISCOFF (X)
99 #endif /* OBJECT_FORMAT_COFF */
101 #ifdef OBJECT_FORMAT_NONE
103 /* Default flags to pass to nm. */
105 #define NM_FLAGS "-n"
108 #endif /* OBJECT_FORMAT_NONE */
110 /* Some systems use __main in a way incompatible with its use in gcc, in these
111 cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
112 give the same symbol without quotes for an alternative entry point. */
114 #define NAME__MAIN "__main"
117 /* This must match tree.h. */
118 #define DEFAULT_INIT_PRIORITY 65535
120 #ifndef COLLECT_SHARED_INIT_FUNC
121 #define COLLECT_SHARED_INIT_FUNC(STREAM, FUNC) \
122 fprintf ((STREAM), "void _GLOBAL__DI() {\n\t%s();\n}\n", (FUNC))
124 #ifndef COLLECT_SHARED_FINI_FUNC
125 #define COLLECT_SHARED_FINI_FUNC(STREAM, FUNC) \
126 fprintf ((STREAM), "void _GLOBAL__DD() {\n\t%s();\n}\n", (FUNC))
130 #define SCAN_LIBRARIES
134 #define SHLIB_SUFFIX ".so"
138 int do_collecting
= 1;
140 int do_collecting
= 0;
143 /* Nonzero if we should suppress the automatic demangling of identifiers
144 in linker error messages. Set from COLLECT_NO_DEMANGLE. */
147 /* Linked lists of constructor and destructor names. */
163 /* Enumeration giving which pass this is for scanning the program file. */
166 PASS_FIRST
, /* without constructors */
167 PASS_OBJ
, /* individual objects */
168 PASS_LIB
, /* looking for shared libraries */
169 PASS_SECOND
/* with constructors linked in */
172 int vflag
; /* true if -v */
173 static int rflag
; /* true if -r */
174 static int strip_flag
; /* true if -s */
175 static const char *demangle_flag
;
176 #ifdef COLLECT_EXPORT_LIST
177 static int export_flag
; /* true if -bE */
178 static int aix64_flag
; /* true if -b64 */
179 static int aixrtl_flag
; /* true if -brtl */
182 int debug
; /* true if -debug */
184 static int shared_obj
; /* true if -shared */
186 static const char *c_file
; /* <xxx>.c for constructor/destructor list. */
187 static const char *o_file
; /* <xxx>.o for constructor/destructor list. */
188 #ifdef COLLECT_EXPORT_LIST
189 static const char *export_file
; /* <xxx>.x for AIX export list. */
191 const char *ldout
; /* File for ld stdout. */
192 const char *lderrout
; /* File for ld stderr. */
193 static const char *output_file
; /* Output file for ld. */
194 static const char *nm_file_name
; /* pathname of nm */
196 static const char *ldd_file_name
; /* pathname of ldd (or equivalent) */
198 static const char *strip_file_name
; /* pathname of strip */
199 const char *c_file_name
; /* pathname of gcc */
200 static char *initname
, *fininame
; /* names of init and fini funcs */
202 static struct head constructors
; /* list of constructors found */
203 static struct head destructors
; /* list of destructors found */
204 #ifdef COLLECT_EXPORT_LIST
205 static struct head exports
; /* list of exported symbols */
207 static struct head frame_tables
; /* list of frame unwind info tables */
209 static bool at_file_supplied
; /* Whether to use @file arguments */
210 static char *response_file
; /* Name of any current response file */
212 struct obstack temporary_obstack
;
213 char * temporary_firstobj
;
215 /* Structure to hold all the directories in which to search for files to
220 const char *prefix
; /* String to prepend to the path. */
221 struct prefix_list
*next
; /* Next in linked list. */
226 struct prefix_list
*plist
; /* List of prefixes to try */
227 int max_len
; /* Max length of a prefix in PLIST */
228 const char *name
; /* Name of this list (used in config stuff) */
231 #ifdef COLLECT_EXPORT_LIST
232 /* Lists to keep libraries to be scanned for global constructors/destructors. */
233 static struct head libs
; /* list of libraries */
234 static struct path_prefix cmdline_lib_dirs
; /* directories specified with -L */
235 static struct path_prefix libpath_lib_dirs
; /* directories in LIBPATH */
236 static struct path_prefix
*libpaths
[3] = {&cmdline_lib_dirs
,
237 &libpath_lib_dirs
, NULL
};
240 /* Special kinds of symbols that a name may denote. */
243 SYM_REGULAR
= 0, /* nothing special */
245 SYM_CTOR
= 1, /* constructor */
246 SYM_DTOR
= 2, /* destructor */
247 SYM_INIT
= 3, /* shared object routine that calls all the ctors */
248 SYM_FINI
= 4, /* shared object routine that calls all the dtors */
249 SYM_DWEH
= 5 /* DWARF exception handling table */
252 static symkind
is_ctor_dtor (const char *);
254 static void handler (int);
255 static char *find_a_file (struct path_prefix
*, const char *);
256 static void add_prefix (struct path_prefix
*, const char *);
257 static void prefix_from_env (const char *, struct path_prefix
*);
258 static void prefix_from_string (const char *, struct path_prefix
*);
259 static void do_wait (const char *, struct pex_obj
*);
260 static void fork_execute (const char *, char **);
261 static void maybe_unlink (const char *);
262 static void add_to_list (struct head
*, const char *);
263 static int extract_init_priority (const char *);
264 static void sort_ids (struct head
*);
265 static void write_list (FILE *, const char *, struct id
*);
266 #ifdef COLLECT_EXPORT_LIST
267 static void dump_list (FILE *, const char *, struct id
*);
270 static void dump_prefix_list (FILE *, const char *, struct prefix_list
*);
272 static void write_list_with_asm (FILE *, const char *, struct id
*);
273 static void write_c_file (FILE *, const char *);
274 static void write_c_file_stat (FILE *, const char *);
275 #ifndef LD_INIT_SWITCH
276 static void write_c_file_glob (FILE *, const char *);
278 static void scan_prog_file (const char *, enum pass
);
279 #ifdef SCAN_LIBRARIES
280 static void scan_libraries (const char *);
282 #if LINK_ELIMINATE_DUPLICATE_LDIRECTORIES
283 static int is_in_args (const char *, const char **, const char **);
285 #ifdef COLLECT_EXPORT_LIST
287 static int is_in_list (const char *, struct id
*);
289 static void write_aix_file (FILE *, struct id
*);
290 static char *resolve_lib_name (const char *);
292 static char *extract_string (const char **);
294 /* Delete tempfiles and exit function. */
297 collect_exit (int status
)
299 if (c_file
!= 0 && c_file
[0])
300 maybe_unlink (c_file
);
302 if (o_file
!= 0 && o_file
[0])
303 maybe_unlink (o_file
);
305 #ifdef COLLECT_EXPORT_LIST
306 if (export_file
!= 0 && export_file
[0])
307 maybe_unlink (export_file
);
310 if (ldout
!= 0 && ldout
[0])
312 dump_file (ldout
, stdout
);
313 maybe_unlink (ldout
);
316 if (lderrout
!= 0 && lderrout
[0])
318 dump_file (lderrout
, stderr
);
319 maybe_unlink (lderrout
);
322 if (status
!= 0 && output_file
!= 0 && output_file
[0])
323 maybe_unlink (output_file
);
326 maybe_unlink (response_file
);
332 /* Notify user of a non-error. */
334 notice (const char *cmsgid
, ...)
338 va_start (ap
, cmsgid
);
339 vfprintf (stderr
, _(cmsgid
), ap
);
343 /* Die when sys call fails. */
346 fatal_perror (const char * cmsgid
, ...)
351 va_start (ap
, cmsgid
);
352 fprintf (stderr
, "collect2: ");
353 vfprintf (stderr
, _(cmsgid
), ap
);
354 fprintf (stderr
, ": %s\n", xstrerror (e
));
357 collect_exit (FATAL_EXIT_CODE
);
363 fatal (const char * cmsgid
, ...)
367 va_start (ap
, cmsgid
);
368 fprintf (stderr
, "collect2: ");
369 vfprintf (stderr
, _(cmsgid
), ap
);
370 fprintf (stderr
, "\n");
373 collect_exit (FATAL_EXIT_CODE
);
376 /* Write error message. */
379 error (const char * gmsgid
, ...)
383 va_start (ap
, gmsgid
);
384 fprintf (stderr
, "collect2: ");
385 vfprintf (stderr
, _(gmsgid
), ap
);
386 fprintf (stderr
, "\n");
390 /* In case obstack is linked in, and abort is defined to fancy_abort,
391 provide a default entry. */
394 fancy_abort (const char *file
, int line
, const char *func
)
396 fatal ("internal gcc abort in %s, at %s:%d", func
, file
, line
);
402 if (c_file
!= 0 && c_file
[0])
403 maybe_unlink (c_file
);
405 if (o_file
!= 0 && o_file
[0])
406 maybe_unlink (o_file
);
408 if (ldout
!= 0 && ldout
[0])
409 maybe_unlink (ldout
);
411 if (lderrout
!= 0 && lderrout
[0])
412 maybe_unlink (lderrout
);
414 #ifdef COLLECT_EXPORT_LIST
415 if (export_file
!= 0 && export_file
[0])
416 maybe_unlink (export_file
);
420 maybe_unlink (response_file
);
422 signal (signo
, SIG_DFL
);
428 file_exists (const char *name
)
430 return access (name
, R_OK
) == 0;
433 /* Parse a reasonable subset of shell quoting syntax. */
436 extract_string (const char **pp
)
449 obstack_1grow (&temporary_obstack
, c
);
450 else if (! inside
&& c
== ' ')
452 else if (! inside
&& c
== '\\')
457 obstack_1grow (&temporary_obstack
, c
);
460 obstack_1grow (&temporary_obstack
, '\0');
462 return XOBFINISH (&temporary_obstack
, char *);
466 dump_file (const char *name
, FILE *to
)
468 FILE *stream
= fopen (name
, "r");
475 while (c
= getc (stream
),
476 c
!= EOF
&& (ISIDNUM (c
) || c
== '$' || c
== '.'))
477 obstack_1grow (&temporary_obstack
, c
);
478 if (obstack_object_size (&temporary_obstack
) > 0)
480 const char *word
, *p
;
482 obstack_1grow (&temporary_obstack
, '\0');
483 word
= XOBFINISH (&temporary_obstack
, const char *);
486 ++word
, putc ('.', to
);
488 if (!strncmp (p
, USER_LABEL_PREFIX
, strlen (USER_LABEL_PREFIX
)))
489 p
+= strlen (USER_LABEL_PREFIX
);
491 #ifdef HAVE_LD_DEMANGLE
497 result
= cplus_demangle (p
, DMGL_PARAMS
| DMGL_ANSI
| DMGL_VERBOSE
);
505 diff
= strlen (word
) - strlen (result
);
506 while (diff
> 0 && c
== ' ')
507 --diff
, putc (' ', to
);
508 if (diff
< 0 && c
== ' ')
510 while (diff
< 0 && c
== ' ')
511 ++diff
, c
= getc (stream
);
514 /* Make sure we output at least one space, or
515 the demangled symbol name will run into
516 whatever text follows. */
527 obstack_free (&temporary_obstack
, temporary_firstobj
);
536 /* Return the kind of symbol denoted by name S. */
539 is_ctor_dtor (const char *s
)
541 struct names
{ const char *const name
; const int len
; symkind ret
;
542 const int two_underscores
; };
544 const struct names
*p
;
546 const char *orig_s
= s
;
548 static const struct names special
[] = {
549 #ifndef NO_DOLLAR_IN_LABEL
550 { "GLOBAL__I$", sizeof ("GLOBAL__I$")-1, SYM_CTOR
, 0 },
551 { "GLOBAL__D$", sizeof ("GLOBAL__D$")-1, SYM_DTOR
, 0 },
553 #ifndef NO_DOT_IN_LABEL
554 { "GLOBAL__I.", sizeof ("GLOBAL__I.")-1, SYM_CTOR
, 0 },
555 { "GLOBAL__D.", sizeof ("GLOBAL__D.")-1, SYM_DTOR
, 0 },
556 #endif /* NO_DOT_IN_LABEL */
557 #endif /* NO_DOLLAR_IN_LABEL */
558 { "GLOBAL__I_", sizeof ("GLOBAL__I_")-1, SYM_CTOR
, 0 },
559 { "GLOBAL__D_", sizeof ("GLOBAL__D_")-1, SYM_DTOR
, 0 },
560 { "GLOBAL__F_", sizeof ("GLOBAL__F_")-1, SYM_DWEH
, 0 },
561 { "GLOBAL__FI_", sizeof ("GLOBAL__FI_")-1, SYM_INIT
, 0 },
562 { "GLOBAL__FD_", sizeof ("GLOBAL__FD_")-1, SYM_FINI
, 0 },
563 { NULL
, 0, SYM_REGULAR
, 0 }
566 while ((ch
= *s
) == '_')
572 for (p
= &special
[0]; p
->len
> 0; p
++)
575 && (!p
->two_underscores
|| ((s
- orig_s
) >= 2))
576 && strncmp(s
, p
->name
, p
->len
) == 0)
584 /* We maintain two prefix lists: one from COMPILER_PATH environment variable
585 and one from the PATH variable. */
587 static struct path_prefix cpath
, path
;
589 #ifdef CROSS_DIRECTORY_STRUCTURE
590 /* This is the name of the target machine. We use it to form the name
591 of the files to execute. */
593 static const char *const target_machine
= TARGET_MACHINE
;
596 /* Search for NAME using prefix list PPREFIX. We only look for executable
599 Return 0 if not found, otherwise return its name, allocated with malloc. */
602 find_a_file (struct path_prefix
*pprefix
, const char *name
)
605 struct prefix_list
*pl
;
606 int len
= pprefix
->max_len
+ strlen (name
) + 1;
609 fprintf (stderr
, "Looking for '%s'\n", name
);
611 #ifdef HOST_EXECUTABLE_SUFFIX
612 len
+= strlen (HOST_EXECUTABLE_SUFFIX
);
615 temp
= XNEWVEC (char, len
);
617 /* Determine the filename to execute (special case for absolute paths). */
619 if (IS_ABSOLUTE_PATH (name
))
621 if (access (name
, X_OK
) == 0)
626 fprintf (stderr
, " - found: absolute path\n");
631 #ifdef HOST_EXECUTABLE_SUFFIX
632 /* Some systems have a suffix for executable files.
633 So try appending that. */
635 strcat (temp
, HOST_EXECUTABLE_SUFFIX
);
637 if (access (temp
, X_OK
) == 0)
642 fprintf (stderr
, " - failed to locate using absolute path\n");
645 for (pl
= pprefix
->plist
; pl
; pl
= pl
->next
)
649 strcpy (temp
, pl
->prefix
);
652 if (stat (temp
, &st
) >= 0
653 && ! S_ISDIR (st
.st_mode
)
654 && access (temp
, X_OK
) == 0)
657 #ifdef HOST_EXECUTABLE_SUFFIX
658 /* Some systems have a suffix for executable files.
659 So try appending that. */
660 strcat (temp
, HOST_EXECUTABLE_SUFFIX
);
662 if (stat (temp
, &st
) >= 0
663 && ! S_ISDIR (st
.st_mode
)
664 && access (temp
, X_OK
) == 0)
669 if (debug
&& pprefix
->plist
== NULL
)
670 fprintf (stderr
, " - failed: no entries in prefix list\n");
676 /* Add an entry for PREFIX to prefix list PPREFIX. */
679 add_prefix (struct path_prefix
*pprefix
, const char *prefix
)
681 struct prefix_list
*pl
, **prev
;
686 for (pl
= pprefix
->plist
; pl
->next
; pl
= pl
->next
)
691 prev
= &pprefix
->plist
;
693 /* Keep track of the longest prefix. */
695 len
= strlen (prefix
);
696 if (len
> pprefix
->max_len
)
697 pprefix
->max_len
= len
;
699 pl
= XNEW (struct prefix_list
);
700 pl
->prefix
= xstrdup (prefix
);
705 pl
->next
= (struct prefix_list
*) 0;
709 /* Take the value of the environment variable ENV, break it into a path, and
710 add of the entries to PPREFIX. */
713 prefix_from_env (const char *env
, struct path_prefix
*pprefix
)
716 GET_ENVIRONMENT (p
, env
);
719 prefix_from_string (p
, pprefix
);
723 prefix_from_string (const char *p
, struct path_prefix
*pprefix
)
725 const char *startp
, *endp
;
726 char *nstore
= XNEWVEC (char, strlen (p
) + 3);
729 fprintf (stderr
, "Convert string '%s' into prefixes, separator = '%c'\n", p
, PATH_SEPARATOR
);
734 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
736 strncpy (nstore
, startp
, endp
-startp
);
739 strcpy (nstore
, "./");
741 else if (! IS_DIR_SEPARATOR (endp
[-1]))
743 nstore
[endp
-startp
] = DIR_SEPARATOR
;
744 nstore
[endp
-startp
+1] = 0;
747 nstore
[endp
-startp
] = 0;
750 fprintf (stderr
, " - add prefix: %s\n", nstore
);
752 add_prefix (pprefix
, nstore
);
755 endp
= startp
= endp
+ 1;
766 main (int argc
, char **argv
)
768 static const char *const ld_suffix
= "ld";
769 static const char *const real_ld_suffix
= "real-ld";
770 static const char *const collect_ld_suffix
= "collect-ld";
771 static const char *const nm_suffix
= "nm";
772 static const char *const gnm_suffix
= "gnm";
774 static const char *const ldd_suffix
= LDD_SUFFIX
;
776 static const char *const strip_suffix
= "strip";
777 static const char *const gstrip_suffix
= "gstrip";
779 #ifdef CROSS_DIRECTORY_STRUCTURE
780 /* If we look for a program in the compiler directories, we just use
781 the short name, since these directories are already system-specific.
782 But it we look for a program in the system directories, we need to
783 qualify the program name with the target machine. */
785 const char *const full_ld_suffix
=
786 concat(target_machine
, "-", ld_suffix
, NULL
);
787 const char *const full_nm_suffix
=
788 concat (target_machine
, "-", nm_suffix
, NULL
);
789 const char *const full_gnm_suffix
=
790 concat (target_machine
, "-", gnm_suffix
, NULL
);
792 const char *const full_ldd_suffix
=
793 concat (target_machine
, "-", ldd_suffix
, NULL
);
795 const char *const full_strip_suffix
=
796 concat (target_machine
, "-", strip_suffix
, NULL
);
797 const char *const full_gstrip_suffix
=
798 concat (target_machine
, "-", gstrip_suffix
, NULL
);
800 const char *const full_ld_suffix
= ld_suffix
;
801 const char *const full_nm_suffix
= nm_suffix
;
802 const char *const full_gnm_suffix
= gnm_suffix
;
804 const char *const full_ldd_suffix
= ldd_suffix
;
806 const char *const full_strip_suffix
= strip_suffix
;
807 const char *const full_gstrip_suffix
= gstrip_suffix
;
808 #endif /* CROSS_DIRECTORY_STRUCTURE */
812 #ifdef COLLECT_EXPORT_LIST
815 const char *ld_file_name
;
830 expandargv (&argc
, &argv
);
831 if (argv
!= old_argv
)
832 at_file_supplied
= 1;
834 num_c_args
= argc
+ 9;
836 no_demangle
= !! getenv ("COLLECT_NO_DEMANGLE");
838 /* Suppress demangling by the real linker, which may be broken. */
839 putenv (xstrdup ("COLLECT_NO_DEMANGLE="));
841 #if defined (COLLECT2_HOST_INITIALIZATION)
842 /* Perform system dependent initialization, if necessary. */
843 COLLECT2_HOST_INITIALIZATION
;
847 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
848 receive the signal. A different setting is inheritable */
849 signal (SIGCHLD
, SIG_DFL
);
852 /* Unlock the stdio streams. */
853 unlock_std_streams ();
857 /* Do not invoke xcalloc before this point, since locale needs to be
858 set first, in case a diagnostic is issued. */
860 ld1
= (const char **)(ld1_argv
= XCNEWVEC (char *, argc
+4));
861 ld2
= (const char **)(ld2_argv
= XCNEWVEC (char *, argc
+11));
862 object
= (const char **)(object_lst
= XCNEWVEC (char *, argc
));
868 /* Parse command line early for instances of -debug. This allows
869 the debug flag to be set before functions like find_a_file()
874 for (i
= 1; argv
[i
] != NULL
; i
++)
876 if (! strcmp (argv
[i
], "-debug"))
882 #ifndef DEFAULT_A_OUT_NAME
883 output_file
= "a.out";
885 output_file
= DEFAULT_A_OUT_NAME
;
888 obstack_begin (&temporary_obstack
, 0);
889 temporary_firstobj
= (char *) obstack_alloc (&temporary_obstack
, 0);
891 #ifndef HAVE_LD_DEMANGLE
892 current_demangling_style
= auto_demangling
;
894 p
= getenv ("COLLECT_GCC_OPTIONS");
897 const char *q
= extract_string (&p
);
898 if (*q
== '-' && (q
[1] == 'm' || q
[1] == 'f'))
901 obstack_free (&temporary_obstack
, temporary_firstobj
);
903 /* -fno-profile-arcs -fno-test-coverage -fno-branch-probabilities
904 -fno-exceptions -w */
907 c_ptr
= (const char **) (c_argv
= XCNEWVEC (char *, num_c_args
));
910 fatal ("no arguments");
913 if (signal (SIGQUIT
, SIG_IGN
) != SIG_IGN
)
914 signal (SIGQUIT
, handler
);
916 if (signal (SIGINT
, SIG_IGN
) != SIG_IGN
)
917 signal (SIGINT
, handler
);
919 if (signal (SIGALRM
, SIG_IGN
) != SIG_IGN
)
920 signal (SIGALRM
, handler
);
923 if (signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
924 signal (SIGHUP
, handler
);
926 if (signal (SIGSEGV
, SIG_IGN
) != SIG_IGN
)
927 signal (SIGSEGV
, handler
);
929 if (signal (SIGBUS
, SIG_IGN
) != SIG_IGN
)
930 signal (SIGBUS
, handler
);
933 /* Extract COMPILER_PATH and PATH into our prefix list. */
934 prefix_from_env ("COMPILER_PATH", &cpath
);
935 prefix_from_env ("PATH", &path
);
937 /* Try to discover a valid linker/nm/strip to use. */
939 /* Maybe we know the right file to use (if not cross). */
941 #ifdef DEFAULT_LINKER
942 if (access (DEFAULT_LINKER
, X_OK
) == 0)
943 ld_file_name
= DEFAULT_LINKER
;
944 if (ld_file_name
== 0)
946 #ifdef REAL_LD_FILE_NAME
947 ld_file_name
= find_a_file (&path
, REAL_LD_FILE_NAME
);
948 if (ld_file_name
== 0)
950 /* Search the (target-specific) compiler dirs for ld'. */
951 ld_file_name
= find_a_file (&cpath
, real_ld_suffix
);
952 /* Likewise for `collect-ld'. */
953 if (ld_file_name
== 0)
954 ld_file_name
= find_a_file (&cpath
, collect_ld_suffix
);
955 /* Search the compiler directories for `ld'. We have protection against
956 recursive calls in find_a_file. */
957 if (ld_file_name
== 0)
958 ld_file_name
= find_a_file (&cpath
, ld_suffix
);
959 /* Search the ordinary system bin directories
960 for `ld' (if native linking) or `TARGET-ld' (if cross). */
961 if (ld_file_name
== 0)
962 ld_file_name
= find_a_file (&path
, full_ld_suffix
);
964 #ifdef REAL_NM_FILE_NAME
965 nm_file_name
= find_a_file (&path
, REAL_NM_FILE_NAME
);
966 if (nm_file_name
== 0)
968 nm_file_name
= find_a_file (&cpath
, gnm_suffix
);
969 if (nm_file_name
== 0)
970 nm_file_name
= find_a_file (&path
, full_gnm_suffix
);
971 if (nm_file_name
== 0)
972 nm_file_name
= find_a_file (&cpath
, nm_suffix
);
973 if (nm_file_name
== 0)
974 nm_file_name
= find_a_file (&path
, full_nm_suffix
);
977 ldd_file_name
= find_a_file (&cpath
, ldd_suffix
);
978 if (ldd_file_name
== 0)
979 ldd_file_name
= find_a_file (&path
, full_ldd_suffix
);
982 #ifdef REAL_STRIP_FILE_NAME
983 strip_file_name
= find_a_file (&path
, REAL_STRIP_FILE_NAME
);
984 if (strip_file_name
== 0)
986 strip_file_name
= find_a_file (&cpath
, gstrip_suffix
);
987 if (strip_file_name
== 0)
988 strip_file_name
= find_a_file (&path
, full_gstrip_suffix
);
989 if (strip_file_name
== 0)
990 strip_file_name
= find_a_file (&cpath
, strip_suffix
);
991 if (strip_file_name
== 0)
992 strip_file_name
= find_a_file (&path
, full_strip_suffix
);
994 /* Determine the full path name of the C compiler to use. */
995 c_file_name
= getenv ("COLLECT_GCC");
996 if (c_file_name
== 0)
998 #ifdef CROSS_DIRECTORY_STRUCTURE
999 c_file_name
= concat (target_machine
, "-gcc", NULL
);
1001 c_file_name
= "gcc";
1005 p
= find_a_file (&cpath
, c_file_name
);
1007 /* Here it should be safe to use the system search path since we should have
1008 already qualified the name of the compiler when it is needed. */
1010 p
= find_a_file (&path
, c_file_name
);
1015 *ld1
++ = *ld2
++ = ld_file_name
;
1017 /* Make temp file names. */
1018 c_file
= make_temp_file (".c");
1019 o_file
= make_temp_file (".o");
1020 #ifdef COLLECT_EXPORT_LIST
1021 export_file
= make_temp_file (".x");
1023 ldout
= make_temp_file (".ld");
1024 lderrout
= make_temp_file (".le");
1025 *c_ptr
++ = c_file_name
;
1032 #ifdef COLLECT_EXPORT_LIST
1033 /* Generate a list of directories from LIBPATH. */
1034 prefix_from_env ("LIBPATH", &libpath_lib_dirs
);
1035 /* Add to this list also two standard directories where
1036 AIX loader always searches for libraries. */
1037 add_prefix (&libpath_lib_dirs
, "/lib");
1038 add_prefix (&libpath_lib_dirs
, "/usr/lib");
1041 /* Get any options that the upper GCC wants to pass to the sub-GCC.
1043 AIX support needs to know if -shared has been specified before
1044 parsing commandline arguments. */
1046 p
= getenv ("COLLECT_GCC_OPTIONS");
1049 const char *q
= extract_string (&p
);
1050 if (*q
== '-' && (q
[1] == 'm' || q
[1] == 'f'))
1051 *c_ptr
++ = xstrdup (q
);
1052 if (strcmp (q
, "-EL") == 0 || strcmp (q
, "-EB") == 0)
1053 *c_ptr
++ = xstrdup (q
);
1054 if (strcmp (q
, "-shared") == 0)
1056 if (*q
== '-' && q
[1] == 'B')
1058 *c_ptr
++ = xstrdup (q
);
1061 q
= extract_string (&p
);
1062 *c_ptr
++ = xstrdup (q
);
1066 obstack_free (&temporary_obstack
, temporary_firstobj
);
1067 *c_ptr
++ = "-fno-profile-arcs";
1068 *c_ptr
++ = "-fno-test-coverage";
1069 *c_ptr
++ = "-fno-branch-probabilities";
1070 *c_ptr
++ = "-fno-exceptions";
1073 /* !!! When GCC calls collect2,
1074 it does not know whether it is calling collect2 or ld.
1075 So collect2 cannot meaningfully understand any options
1076 except those ld understands.
1077 If you propose to make GCC pass some other option,
1078 just imagine what will happen if ld is really ld!!! */
1080 /* Parse arguments. Remember output file spec, pass the rest to ld. */
1081 /* After the first file, put in the c++ rt0. */
1084 #ifdef HAVE_LD_DEMANGLE
1085 if (!demangle_flag
&& !no_demangle
)
1086 demangle_flag
= "--demangle";
1088 *ld1
++ = *ld2
++ = demangle_flag
;
1090 while ((arg
= *++argv
) != (char *) 0)
1092 *ld1
++ = *ld2
++ = arg
;
1098 #ifdef COLLECT_EXPORT_LIST
1099 /* We want to disable automatic exports on AIX when user
1100 explicitly puts an export list in command line */
1102 if (arg
[2] == 'E' || strncmp (&arg
[2], "export", 6) == 0)
1104 else if (arg
[2] == '6' && arg
[3] == '4')
1106 else if (arg
[2] == 'r' && arg
[3] == 't' && arg
[4] == 'l')
1112 if (!strcmp (arg
, "-debug"))
1114 /* Already parsed. */
1118 if (!strcmp (arg
, "-dynamic-linker") && argv
[1])
1121 *ld1
++ = *ld2
++ = *argv
;
1128 /* place o_file BEFORE this argument! */
1134 #ifdef COLLECT_EXPORT_LIST
1136 /* Resolving full library name. */
1137 const char *s
= resolve_lib_name (arg
+2);
1139 /* Saving a full library name. */
1140 add_to_list (&libs
, s
);
1145 #ifdef COLLECT_EXPORT_LIST
1146 /* Saving directories where to search for libraries. */
1148 add_prefix (&cmdline_lib_dirs
, arg
+2);
1151 #if LINK_ELIMINATE_DUPLICATE_LDIRECTORIES
1153 if (is_in_args (arg
, (const char **) ld1_argv
, ld1
-1))
1156 #endif /* LINK_ELIMINATE_DUPLICATE_LDIRECTORIES */
1161 output_file
= *ld1
++ = *ld2
++ = *++argv
;
1163 #ifdef SWITCHES_NEED_SPACES
1164 && ! strchr (SWITCHES_NEED_SPACES
, arg
[1])
1168 output_file
= &arg
[2];
1177 if (arg
[2] == '\0' && do_collecting
)
1179 /* We must strip after the nm run, otherwise C++ linking
1180 will not work. Thus we strip in the second ld run, or
1181 else with strip if there is no second ld run. */
1193 if (strcmp (arg
, "--no-demangle") == 0)
1195 demangle_flag
= arg
;
1200 else if (strncmp (arg
, "--demangle", 10) == 0)
1202 demangle_flag
= arg
;
1204 #ifndef HAVE_LD_DEMANGLE
1207 enum demangling_styles style
1208 = cplus_demangle_name_to_style (arg
+11);
1209 if (style
== unknown_demangling
)
1210 error ("unknown demangling style '%s'", arg
+11);
1212 current_demangling_style
= style
;
1221 else if ((p
= strrchr (arg
, '.')) != (char *) 0
1222 && (strcmp (p
, ".o") == 0 || strcmp (p
, ".a") == 0
1223 || strcmp (p
, ".so") == 0 || strcmp (p
, ".lo") == 0
1224 || strcmp (p
, ".obj") == 0))
1233 /* place o_file BEFORE this argument! */
1239 if (p
[1] == 'o' || p
[1] == 'l')
1241 #ifdef COLLECT_EXPORT_LIST
1242 /* libraries can be specified directly, i.e. without -l flag. */
1245 /* Saving a full library name. */
1246 add_to_list (&libs
, arg
);
1252 #ifdef COLLECT_EXPORT_LIST
1253 /* This is added only for debugging purposes. */
1256 fprintf (stderr
, "List of libraries:\n");
1257 dump_list (stderr
, "\t", libs
.first
);
1260 /* The AIX linker will discard static constructors in object files if
1261 nothing else in the file is referenced, so look at them first. */
1263 const char **export_object_lst
= (const char **)object_lst
;
1265 while (export_object_lst
< object
)
1266 scan_prog_file (*export_object_lst
++, PASS_OBJ
);
1269 struct id
*list
= libs
.first
;
1271 for (; list
; list
= list
->next
)
1272 scan_prog_file (list
->name
, PASS_FIRST
);
1277 char *buf
= concat ("-bE:", export_file
, NULL
);
1282 exportf
= fopen (export_file
, "w");
1283 if (exportf
== (FILE *) 0)
1284 fatal_perror ("fopen %s", export_file
);
1285 write_aix_file (exportf
, exports
.first
);
1286 if (fclose (exportf
))
1287 fatal_perror ("fclose %s", export_file
);
1292 *c_ptr
= *ld1
= *object
= (char *) 0;
1296 notice ("collect2 version %s", version_string
);
1297 #ifdef TARGET_VERSION
1300 fprintf (stderr
, "\n");
1306 fprintf (stderr
, "ld_file_name = %s\n",
1307 (ld_file_name
? ld_file_name
: "not found"));
1308 fprintf (stderr
, "c_file_name = %s\n",
1309 (c_file_name
? c_file_name
: "not found"));
1310 fprintf (stderr
, "nm_file_name = %s\n",
1311 (nm_file_name
? nm_file_name
: "not found"));
1313 fprintf (stderr
, "ldd_file_name = %s\n",
1314 (ldd_file_name
? ldd_file_name
: "not found"));
1316 fprintf (stderr
, "strip_file_name = %s\n",
1317 (strip_file_name
? strip_file_name
: "not found"));
1318 fprintf (stderr
, "c_file = %s\n",
1319 (c_file
? c_file
: "not found"));
1320 fprintf (stderr
, "o_file = %s\n",
1321 (o_file
? o_file
: "not found"));
1323 ptr
= getenv ("COLLECT_GCC_OPTIONS");
1325 fprintf (stderr
, "COLLECT_GCC_OPTIONS = %s\n", ptr
);
1327 ptr
= getenv ("COLLECT_GCC");
1329 fprintf (stderr
, "COLLECT_GCC = %s\n", ptr
);
1331 ptr
= getenv ("COMPILER_PATH");
1333 fprintf (stderr
, "COMPILER_PATH = %s\n", ptr
);
1335 ptr
= getenv (LIBRARY_PATH_ENV
);
1337 fprintf (stderr
, "%-20s= %s\n", LIBRARY_PATH_ENV
, ptr
);
1339 fprintf (stderr
, "\n");
1342 /* Load the program, searching all libraries and attempting to provide
1343 undefined symbols from repository information. */
1345 /* On AIX we do this later. */
1346 #ifndef COLLECT_EXPORT_LIST
1347 do_tlink (ld1_argv
, object_lst
);
1350 /* If -r or they will be run via some other method, do not build the
1351 constructor or destructor list, just return now. */
1353 #ifndef COLLECT_EXPORT_LIST
1358 #ifdef COLLECT_EXPORT_LIST
1359 /* Do the link we avoided above if we are exiting. */
1360 do_tlink (ld1_argv
, object_lst
);
1362 /* But make sure we delete the export file we may have created. */
1363 if (export_file
!= 0 && export_file
[0])
1364 maybe_unlink (export_file
);
1366 maybe_unlink (c_file
);
1367 maybe_unlink (o_file
);
1371 /* Examine the namelist with nm and search it for static constructors
1372 and destructors to call.
1373 Write the constructor and destructor tables to a .s file and reload. */
1375 /* On AIX we already scanned for global constructors/destructors. */
1376 #ifndef COLLECT_EXPORT_LIST
1377 scan_prog_file (output_file
, PASS_FIRST
);
1380 #ifdef SCAN_LIBRARIES
1381 scan_libraries (output_file
);
1386 notice ("%d constructor(s) found\n", constructors
.number
);
1387 notice ("%d destructor(s) found\n", destructors
.number
);
1388 notice ("%d frame table(s) found\n", frame_tables
.number
);
1391 if (constructors
.number
== 0 && destructors
.number
== 0
1392 && frame_tables
.number
== 0
1393 #if defined (SCAN_LIBRARIES) || defined (COLLECT_EXPORT_LIST)
1394 /* If we will be running these functions ourselves, we want to emit
1395 stubs into the shared library so that we do not have to relink
1396 dependent programs when we add static objects. */
1401 #ifdef COLLECT_EXPORT_LIST
1402 /* Do tlink without additional code generation. */
1403 do_tlink (ld1_argv
, object_lst
);
1405 /* Strip now if it was requested on the command line. */
1408 char **real_strip_argv
= XCNEWVEC (char *, 3);
1409 const char ** strip_argv
= (const char **) real_strip_argv
;
1411 strip_argv
[0] = strip_file_name
;
1412 strip_argv
[1] = output_file
;
1413 strip_argv
[2] = (char *) 0;
1414 fork_execute ("strip", real_strip_argv
);
1417 #ifdef COLLECT_EXPORT_LIST
1418 maybe_unlink (export_file
);
1420 maybe_unlink (c_file
);
1421 maybe_unlink (o_file
);
1425 /* Sort ctor and dtor lists by priority. */
1426 sort_ids (&constructors
);
1427 sort_ids (&destructors
);
1429 maybe_unlink(output_file
);
1430 outf
= fopen (c_file
, "w");
1431 if (outf
== (FILE *) 0)
1432 fatal_perror ("fopen %s", c_file
);
1434 write_c_file (outf
, c_file
);
1437 fatal_perror ("fclose %s", c_file
);
1439 /* Tell the linker that we have initializer and finalizer functions. */
1440 #ifdef LD_INIT_SWITCH
1441 #ifdef COLLECT_EXPORT_LIST
1442 *ld2
++ = concat (LD_INIT_SWITCH
, ":", initname
, ":", fininame
, NULL
);
1444 *ld2
++ = LD_INIT_SWITCH
;
1446 *ld2
++ = LD_FINI_SWITCH
;
1451 #ifdef COLLECT_EXPORT_LIST
1454 /* If we did not add export flag to link arguments before, add it to
1455 second link phase now. No new exports should have been added. */
1456 if (! exports
.first
)
1457 *ld2
++ = concat ("-bE:", export_file
, NULL
);
1459 #ifndef LD_INIT_SWITCH
1460 add_to_list (&exports
, initname
);
1461 add_to_list (&exports
, fininame
);
1462 add_to_list (&exports
, "_GLOBAL__DI");
1463 add_to_list (&exports
, "_GLOBAL__DD");
1465 exportf
= fopen (export_file
, "w");
1466 if (exportf
== (FILE *) 0)
1467 fatal_perror ("fopen %s", export_file
);
1468 write_aix_file (exportf
, exports
.first
);
1469 if (fclose (exportf
))
1470 fatal_perror ("fclose %s", export_file
);
1474 /* End of arguments to second link phase. */
1479 fprintf (stderr
, "\n========== output_file = %s, c_file = %s\n",
1480 output_file
, c_file
);
1481 write_c_file (stderr
, "stderr");
1482 fprintf (stderr
, "========== end of c_file\n\n");
1483 #ifdef COLLECT_EXPORT_LIST
1484 fprintf (stderr
, "\n========== export_file = %s\n", export_file
);
1485 write_aix_file (stderr
, exports
.first
);
1486 fprintf (stderr
, "========== end of export_file\n\n");
1490 /* Assemble the constructor and destructor tables.
1491 Link the tables in with the rest of the program. */
1493 fork_execute ("gcc", c_argv
);
1494 #ifdef COLLECT_EXPORT_LIST
1495 /* On AIX we must call tlink because of possible templates resolution. */
1496 do_tlink (ld2_argv
, object_lst
);
1498 /* Otherwise, simply call ld because tlink is already done. */
1499 fork_execute ("ld", ld2_argv
);
1501 /* Let scan_prog_file do any final mods (OSF/rose needs this for
1502 constructors/destructors in shared libraries. */
1503 scan_prog_file (output_file
, PASS_SECOND
);
1506 maybe_unlink (c_file
);
1507 maybe_unlink (o_file
);
1509 #ifdef COLLECT_EXPORT_LIST
1510 maybe_unlink (export_file
);
1517 /* Wait for a process to finish, and exit if a nonzero status is found. */
1520 collect_wait (const char *prog
, struct pex_obj
*pex
)
1524 if (!pex_get_status (pex
, 1, &status
))
1525 fatal_perror ("can't get program status");
1530 if (WIFSIGNALED (status
))
1532 int sig
= WTERMSIG (status
);
1533 error ("%s terminated with signal %d [%s]%s",
1534 prog
, sig
, strsignal(sig
),
1535 WCOREDUMP(status
) ? ", core dumped" : "");
1536 collect_exit (FATAL_EXIT_CODE
);
1539 if (WIFEXITED (status
))
1540 return WEXITSTATUS (status
);
1546 do_wait (const char *prog
, struct pex_obj
*pex
)
1548 int ret
= collect_wait (prog
, pex
);
1551 error ("%s returned %d exit status", prog
, ret
);
1557 unlink (response_file
);
1558 response_file
= NULL
;
1563 /* Execute a program, and wait for the reply. */
1566 collect_execute (const char *prog
, char **argv
, const char *outname
,
1567 const char *errname
)
1569 struct pex_obj
*pex
;
1572 char *response_arg
= NULL
;
1573 char *response_argv
[3] ATTRIBUTE_UNUSED
;
1575 if (HAVE_GNU_LD
&& at_file_supplied
&& argv
[0] != NULL
)
1577 /* If using @file arguments, create a temporary file and put the
1578 contents of argv into it. Then change argv to an array corresponding
1579 to a single argument @FILE, where FILE is the temporary filename. */
1581 char **current_argv
= argv
+ 1;
1582 char *argv0
= argv
[0];
1586 /* Note: we assume argv contains at least one element; this is
1589 response_file
= make_temp_file ("");
1591 f
= fopen (response_file
, "w");
1594 fatal ("could not open response file %s", response_file
);
1596 status
= writeargv (current_argv
, f
);
1599 fatal ("could not write to response file %s", response_file
);
1601 status
= fclose (f
);
1604 fatal ("could not close response file %s", response_file
);
1606 response_arg
= concat ("@", response_file
, NULL
);
1607 response_argv
[0] = argv0
;
1608 response_argv
[1] = response_arg
;
1609 response_argv
[2] = NULL
;
1611 argv
= response_argv
;
1620 fprintf (stderr
, "%s", argv
[0]);
1622 notice ("[cannot find %s]", prog
);
1624 for (p_argv
= &argv
[1]; (str
= *p_argv
) != (char *) 0; p_argv
++)
1625 fprintf (stderr
, " %s", str
);
1627 fprintf (stderr
, "\n");
1633 /* If we cannot find a program we need, complain error. Do this here
1634 since we might not end up needing something that we could not find. */
1637 fatal ("cannot find '%s'", prog
);
1639 pex
= pex_init (0, "collect2", NULL
);
1641 fatal_perror ("pex_init failed");
1643 errmsg
= pex_run (pex
, PEX_LAST
| PEX_SEARCH
, argv
[0], argv
, outname
,
1650 fatal_perror (errmsg
);
1657 free (response_arg
);
1663 fork_execute (const char *prog
, char **argv
)
1665 struct pex_obj
*pex
;
1667 pex
= collect_execute (prog
, argv
, NULL
, NULL
);
1668 do_wait (prog
, pex
);
1671 /* Unlink a file unless we are debugging. */
1674 maybe_unlink (const char *file
)
1677 unlink_if_ordinary (file
);
1679 notice ("[Leaving %s]\n", file
);
1683 static long sequence_number
= 0;
1685 /* Add a name to a linked list. */
1688 add_to_list (struct head
*head_ptr
, const char *name
)
1691 = (struct id
*) xcalloc (sizeof (struct id
) + strlen (name
), 1);
1693 strcpy (newid
->name
, name
);
1695 if (head_ptr
->first
)
1696 head_ptr
->last
->next
= newid
;
1698 head_ptr
->first
= newid
;
1700 /* Check for duplicate symbols. */
1701 for (p
= head_ptr
->first
;
1702 strcmp (name
, p
->name
) != 0;
1707 head_ptr
->last
->next
= 0;
1712 newid
->sequence
= ++sequence_number
;
1713 head_ptr
->last
= newid
;
1717 /* Grab the init priority number from an init function name that
1718 looks like "_GLOBAL_.I.12345.foo". */
1721 extract_init_priority (const char *name
)
1725 while (name
[pos
] == '_')
1727 pos
+= 10; /* strlen ("GLOBAL__X_") */
1729 /* Extract init_p number from ctor/dtor name. */
1730 pri
= atoi (name
+ pos
);
1731 return pri
? pri
: DEFAULT_INIT_PRIORITY
;
1734 /* Insertion sort the ids from ctor/dtor list HEAD_PTR in descending order.
1735 ctors will be run from right to left, dtors from left to right. */
1738 sort_ids (struct head
*head_ptr
)
1740 /* id holds the current element to insert. id_next holds the next
1741 element to insert. id_ptr iterates through the already sorted elements
1742 looking for the place to insert id. */
1743 struct id
*id
, *id_next
, **id_ptr
;
1745 id
= head_ptr
->first
;
1747 /* We don't have any sorted elements yet. */
1748 head_ptr
->first
= NULL
;
1750 for (; id
; id
= id_next
)
1753 id
->sequence
= extract_init_priority (id
->name
);
1755 for (id_ptr
= &(head_ptr
->first
); ; id_ptr
= &((*id_ptr
)->next
))
1757 /* If the sequence numbers are the same, we put the id from the
1758 file later on the command line later in the list. */
1759 || id
->sequence
> (*id_ptr
)->sequence
1760 /* Hack: do lexical compare, too.
1761 || (id->sequence == (*id_ptr)->sequence
1762 && strcmp (id->name, (*id_ptr)->name) > 0) */
1771 /* Now set the sequence numbers properly so write_c_file works. */
1772 for (id
= head_ptr
->first
; id
; id
= id
->next
)
1773 id
->sequence
= ++sequence_number
;
1776 /* Write: `prefix', the names on list LIST, `suffix'. */
1779 write_list (FILE *stream
, const char *prefix
, struct id
*list
)
1783 fprintf (stream
, "%sx%d,\n", prefix
, list
->sequence
);
1788 #if LINK_ELIMINATE_DUPLICATE_LDIRECTORIES
1789 /* Given a STRING, return nonzero if it occurs in the list in range
1790 [ARGS_BEGIN,ARGS_END). */
1793 is_in_args (const char *string
, const char **args_begin
,
1794 const char **args_end
)
1796 const char **args_pointer
;
1797 for (args_pointer
= args_begin
; args_pointer
!= args_end
; ++args_pointer
)
1798 if (strcmp (string
, *args_pointer
) == 0)
1802 #endif /* LINK_ELIMINATE_DUPLICATE_LDIRECTORIES */
1804 #ifdef COLLECT_EXPORT_LIST
1805 /* This function is really used only on AIX, but may be useful. */
1808 is_in_list (const char *prefix
, struct id
*list
)
1812 if (!strcmp (prefix
, list
->name
)) return 1;
1818 #endif /* COLLECT_EXPORT_LIST */
1820 /* Added for debugging purpose. */
1821 #ifdef COLLECT_EXPORT_LIST
1823 dump_list (FILE *stream
, const char *prefix
, struct id
*list
)
1827 fprintf (stream
, "%s%s,\n", prefix
, list
->name
);
1835 dump_prefix_list (FILE *stream
, const char *prefix
, struct prefix_list
*list
)
1839 fprintf (stream
, "%s%s,\n", prefix
, list
->prefix
);
1846 write_list_with_asm (FILE *stream
, const char *prefix
, struct id
*list
)
1850 fprintf (stream
, "%sx%d __asm__ (\"%s\");\n",
1851 prefix
, list
->sequence
, list
->name
);
1856 /* Write out the constructor and destructor tables statically (for a shared
1857 object), along with the functions to execute them. */
1860 write_c_file_stat (FILE *stream
, const char *name ATTRIBUTE_UNUSED
)
1864 int frames
= (frame_tables
.number
> 0);
1866 /* Figure out name of output_file, stripping off .so version. */
1867 p
= strrchr (output_file
, '/');
1883 if (strncmp (q
, SHLIB_SUFFIX
, strlen (SHLIB_SUFFIX
)) == 0)
1885 q
+= strlen (SHLIB_SUFFIX
);
1892 /* q points to null at end of the string (or . of the .so version) */
1893 prefix
= XNEWVEC (char, q
- p
+ 1);
1894 strncpy (prefix
, p
, q
- p
);
1896 for (r
= prefix
; *r
; r
++)
1897 if (!ISALNUM ((unsigned char)*r
))
1900 notice ("\nwrite_c_file - output name is %s, prefix is %s\n",
1901 output_file
, prefix
);
1903 initname
= concat ("_GLOBAL__FI_", prefix
, NULL
);
1904 fininame
= concat ("_GLOBAL__FD_", prefix
, NULL
);
1908 /* Write the tables as C code. */
1910 fprintf (stream
, "static int count;\n");
1911 fprintf (stream
, "typedef void entry_pt();\n");
1912 write_list_with_asm (stream
, "extern entry_pt ", constructors
.first
);
1916 write_list_with_asm (stream
, "extern void *", frame_tables
.first
);
1918 fprintf (stream
, "\tstatic void *frame_table[] = {\n");
1919 write_list (stream
, "\t\t&", frame_tables
.first
);
1920 fprintf (stream
, "\t0\n};\n");
1922 /* This must match what's in frame.h. */
1923 fprintf (stream
, "struct object {\n");
1924 fprintf (stream
, " void *pc_begin;\n");
1925 fprintf (stream
, " void *pc_end;\n");
1926 fprintf (stream
, " void *fde_begin;\n");
1927 fprintf (stream
, " void *fde_array;\n");
1928 fprintf (stream
, " __SIZE_TYPE__ count;\n");
1929 fprintf (stream
, " struct object *next;\n");
1930 fprintf (stream
, "};\n");
1932 fprintf (stream
, "extern void __register_frame_info_table (void *, struct object *);\n");
1933 fprintf (stream
, "extern void *__deregister_frame_info (void *);\n");
1935 fprintf (stream
, "static void reg_frame () {\n");
1936 fprintf (stream
, "\tstatic struct object ob;\n");
1937 fprintf (stream
, "\t__register_frame_info_table (frame_table, &ob);\n");
1938 fprintf (stream
, "\t}\n");
1940 fprintf (stream
, "static void dereg_frame () {\n");
1941 fprintf (stream
, "\t__deregister_frame_info (frame_table);\n");
1942 fprintf (stream
, "\t}\n");
1945 fprintf (stream
, "void %s() {\n", initname
);
1946 if (constructors
.number
> 0 || frames
)
1948 fprintf (stream
, "\tstatic entry_pt *ctors[] = {\n");
1949 write_list (stream
, "\t\t", constructors
.first
);
1951 fprintf (stream
, "\treg_frame,\n");
1952 fprintf (stream
, "\t};\n");
1953 fprintf (stream
, "\tentry_pt **p;\n");
1954 fprintf (stream
, "\tif (count++ != 0) return;\n");
1955 fprintf (stream
, "\tp = ctors + %d;\n", constructors
.number
+ frames
);
1956 fprintf (stream
, "\twhile (p > ctors) (*--p)();\n");
1959 fprintf (stream
, "\t++count;\n");
1960 fprintf (stream
, "}\n");
1961 write_list_with_asm (stream
, "extern entry_pt ", destructors
.first
);
1962 fprintf (stream
, "void %s() {\n", fininame
);
1963 if (destructors
.number
> 0 || frames
)
1965 fprintf (stream
, "\tstatic entry_pt *dtors[] = {\n");
1966 write_list (stream
, "\t\t", destructors
.first
);
1968 fprintf (stream
, "\tdereg_frame,\n");
1969 fprintf (stream
, "\t};\n");
1970 fprintf (stream
, "\tentry_pt **p;\n");
1971 fprintf (stream
, "\tif (--count != 0) return;\n");
1972 fprintf (stream
, "\tp = dtors;\n");
1973 fprintf (stream
, "\twhile (p < dtors + %d) (*p++)();\n",
1974 destructors
.number
+ frames
);
1976 fprintf (stream
, "}\n");
1980 COLLECT_SHARED_INIT_FUNC(stream
, initname
);
1981 COLLECT_SHARED_FINI_FUNC(stream
, fininame
);
1985 /* Write the constructor/destructor tables. */
1987 #ifndef LD_INIT_SWITCH
1989 write_c_file_glob (FILE *stream
, const char *name ATTRIBUTE_UNUSED
)
1991 /* Write the tables as C code. */
1993 int frames
= (frame_tables
.number
> 0);
1995 fprintf (stream
, "typedef void entry_pt();\n\n");
1997 write_list_with_asm (stream
, "extern entry_pt ", constructors
.first
);
2001 write_list_with_asm (stream
, "extern void *", frame_tables
.first
);
2003 fprintf (stream
, "\tstatic void *frame_table[] = {\n");
2004 write_list (stream
, "\t\t&", frame_tables
.first
);
2005 fprintf (stream
, "\t0\n};\n");
2007 /* This must match what's in frame.h. */
2008 fprintf (stream
, "struct object {\n");
2009 fprintf (stream
, " void *pc_begin;\n");
2010 fprintf (stream
, " void *pc_end;\n");
2011 fprintf (stream
, " void *fde_begin;\n");
2012 fprintf (stream
, " void *fde_array;\n");
2013 fprintf (stream
, " __SIZE_TYPE__ count;\n");
2014 fprintf (stream
, " struct object *next;\n");
2015 fprintf (stream
, "};\n");
2017 fprintf (stream
, "extern void __register_frame_info_table (void *, struct object *);\n");
2018 fprintf (stream
, "extern void *__deregister_frame_info (void *);\n");
2020 fprintf (stream
, "static void reg_frame () {\n");
2021 fprintf (stream
, "\tstatic struct object ob;\n");
2022 fprintf (stream
, "\t__register_frame_info_table (frame_table, &ob);\n");
2023 fprintf (stream
, "\t}\n");
2025 fprintf (stream
, "static void dereg_frame () {\n");
2026 fprintf (stream
, "\t__deregister_frame_info (frame_table);\n");
2027 fprintf (stream
, "\t}\n");
2030 fprintf (stream
, "\nentry_pt * __CTOR_LIST__[] = {\n");
2031 fprintf (stream
, "\t(entry_pt *) %d,\n", constructors
.number
+ frames
);
2032 write_list (stream
, "\t", constructors
.first
);
2034 fprintf (stream
, "\treg_frame,\n");
2035 fprintf (stream
, "\t0\n};\n\n");
2037 write_list_with_asm (stream
, "extern entry_pt ", destructors
.first
);
2039 fprintf (stream
, "\nentry_pt * __DTOR_LIST__[] = {\n");
2040 fprintf (stream
, "\t(entry_pt *) %d,\n", destructors
.number
+ frames
);
2041 write_list (stream
, "\t", destructors
.first
);
2043 fprintf (stream
, "\tdereg_frame,\n");
2044 fprintf (stream
, "\t0\n};\n\n");
2046 fprintf (stream
, "extern entry_pt %s;\n", NAME__MAIN
);
2047 fprintf (stream
, "entry_pt *__main_reference = %s;\n\n", NAME__MAIN
);
2049 #endif /* ! LD_INIT_SWITCH */
2052 write_c_file (FILE *stream
, const char *name
)
2054 #ifndef LD_INIT_SWITCH
2056 write_c_file_glob (stream
, name
);
2059 write_c_file_stat (stream
, name
);
2062 #ifdef COLLECT_EXPORT_LIST
2064 write_aix_file (FILE *stream
, struct id
*list
)
2066 for (; list
; list
= list
->next
)
2068 fputs (list
->name
, stream
);
2069 putc ('\n', stream
);
2074 #ifdef OBJECT_FORMAT_NONE
2076 /* Generic version to scan the name list of the loaded program for
2077 the symbols g++ uses for static constructors and destructors.
2079 The constructor table begins at __CTOR_LIST__ and contains a count
2080 of the number of pointers (or -1 if the constructors are built in a
2081 separate section by the linker), followed by the pointers to the
2082 constructor functions, terminated with a null pointer. The
2083 destructor table has the same format, and begins at __DTOR_LIST__. */
2086 scan_prog_file (const char *prog_name
, enum pass which_pass
)
2088 void (*int_handler
) (int);
2090 void (*quit_handler
) (int);
2092 char *real_nm_argv
[4];
2093 const char **nm_argv
= (const char **) real_nm_argv
;
2095 struct pex_obj
*pex
;
2101 if (which_pass
== PASS_SECOND
)
2104 /* If we do not have an `nm', complain. */
2105 if (nm_file_name
== 0)
2106 fatal ("cannot find 'nm'");
2108 nm_argv
[argc
++] = nm_file_name
;
2109 if (NM_FLAGS
[0] != '\0')
2110 nm_argv
[argc
++] = NM_FLAGS
;
2112 nm_argv
[argc
++] = prog_name
;
2113 nm_argv
[argc
++] = (char *) 0;
2115 /* Trace if needed. */
2118 const char **p_argv
;
2121 for (p_argv
= &nm_argv
[0]; (str
= *p_argv
) != (char *) 0; p_argv
++)
2122 fprintf (stderr
, " %s", str
);
2124 fprintf (stderr
, "\n");
2130 pex
= pex_init (PEX_USE_PIPES
, "collect2", NULL
);
2132 fatal_perror ("pex_init failed");
2134 errmsg
= pex_run (pex
, 0, nm_file_name
, real_nm_argv
, NULL
, NULL
, &err
);
2140 fatal_perror (errmsg
);
2146 int_handler
= (void (*) (int)) signal (SIGINT
, SIG_IGN
);
2148 quit_handler
= (void (*) (int)) signal (SIGQUIT
, SIG_IGN
);
2151 inf
= pex_read_output (pex
, 0);
2153 fatal_perror ("can't open nm output");
2156 fprintf (stderr
, "\nnm output with constructors/destructors.\n");
2158 /* Read each line of nm output. */
2159 while (fgets (buf
, sizeof buf
, inf
) != (char *) 0)
2164 /* If it contains a constructor or destructor name, add the name
2165 to the appropriate list. */
2167 for (p
= buf
; (ch
= *p
) != '\0' && ch
!= '\n' && ch
!= '_'; p
++)
2168 if (ch
== ' ' && p
[1] == 'U' && p
[2] == ' ')
2175 /* Find the end of the symbol name.
2176 Do not include `|', because Encore nm can tack that on the end. */
2177 for (end
= p
; (ch2
= *end
) != '\0' && !ISSPACE (ch2
) && ch2
!= '|';
2183 switch (is_ctor_dtor (name
))
2186 if (which_pass
!= PASS_LIB
)
2187 add_to_list (&constructors
, name
);
2191 if (which_pass
!= PASS_LIB
)
2192 add_to_list (&destructors
, name
);
2196 if (which_pass
!= PASS_LIB
)
2197 fatal ("init function found in object %s", prog_name
);
2198 #ifndef LD_INIT_SWITCH
2199 add_to_list (&constructors
, name
);
2204 if (which_pass
!= PASS_LIB
)
2205 fatal ("fini function found in object %s", prog_name
);
2206 #ifndef LD_FINI_SWITCH
2207 add_to_list (&destructors
, name
);
2212 if (which_pass
!= PASS_LIB
)
2213 add_to_list (&frame_tables
, name
);
2216 default: /* not a constructor or destructor */
2221 fprintf (stderr
, "\t%s\n", buf
);
2225 fprintf (stderr
, "\n");
2227 do_wait (nm_file_name
, pex
);
2229 signal (SIGINT
, int_handler
);
2231 signal (SIGQUIT
, quit_handler
);
2237 /* Use the List Dynamic Dependencies program to find shared libraries that
2238 the output file depends upon and their initialization/finalization
2239 routines, if any. */
2242 scan_libraries (const char *prog_name
)
2244 static struct head libraries
; /* list of shared libraries found */
2246 void (*int_handler
) (int);
2248 void (*quit_handler
) (int);
2250 char *real_ldd_argv
[4];
2251 const char **ldd_argv
= (const char **) real_ldd_argv
;
2253 struct pex_obj
*pex
;
2259 /* If we do not have an `ldd', complain. */
2260 if (ldd_file_name
== 0)
2262 error ("cannot find 'ldd'");
2266 ldd_argv
[argc
++] = ldd_file_name
;
2267 ldd_argv
[argc
++] = prog_name
;
2268 ldd_argv
[argc
++] = (char *) 0;
2270 /* Trace if needed. */
2273 const char **p_argv
;
2276 for (p_argv
= &ldd_argv
[0]; (str
= *p_argv
) != (char *) 0; p_argv
++)
2277 fprintf (stderr
, " %s", str
);
2279 fprintf (stderr
, "\n");
2285 pex
= pex_init (PEX_USE_PIPES
, "collect2", NULL
);
2287 fatal_perror ("pex_init failed");
2289 errmsg
= pex_run (pex
, 0, ldd_file_name
, real_ldd_argv
, NULL
, NULL
, &err
);
2295 fatal_perror (errmsg
);
2301 int_handler
= (void (*) (int)) signal (SIGINT
, SIG_IGN
);
2303 quit_handler
= (void (*) (int)) signal (SIGQUIT
, SIG_IGN
);
2306 inf
= pex_read_output (pex
, 0);
2308 fatal_perror ("can't open ldd output");
2311 notice ("\nldd output with constructors/destructors.\n");
2313 /* Read each line of ldd output. */
2314 while (fgets (buf
, sizeof buf
, inf
) != (char *) 0)
2317 char *name
, *end
, *p
= buf
;
2319 /* Extract names of libraries and add to list. */
2320 PARSE_LDD_OUTPUT (p
);
2325 if (strncmp (name
, "not found", sizeof ("not found") - 1) == 0)
2326 fatal ("dynamic dependency %s not found", buf
);
2328 /* Find the end of the symbol name. */
2330 (ch2
= *end
) != '\0' && ch2
!= '\n' && !ISSPACE (ch2
) && ch2
!= '|';
2335 if (access (name
, R_OK
) == 0)
2336 add_to_list (&libraries
, name
);
2338 fatal ("unable to open dynamic dependency '%s'", buf
);
2341 fprintf (stderr
, "\t%s\n", buf
);
2344 fprintf (stderr
, "\n");
2346 do_wait (ldd_file_name
, pex
);
2348 signal (SIGINT
, int_handler
);
2350 signal (SIGQUIT
, quit_handler
);
2353 /* Now iterate through the library list adding their symbols to
2355 for (list
= libraries
.first
; list
; list
= list
->next
)
2356 scan_prog_file (list
->name
, PASS_LIB
);
2359 #endif /* LDD_SUFFIX */
2361 #endif /* OBJECT_FORMAT_NONE */
2365 * COFF specific stuff.
2368 #ifdef OBJECT_FORMAT_COFF
2370 #if defined (EXTENDED_COFF)
2372 # define GCC_SYMBOLS(X) (SYMHEADER(X).isymMax + SYMHEADER(X).iextMax)
2373 # define GCC_SYMENT SYMR
2374 # define GCC_OK_SYMBOL(X) ((X).st == stProc || (X).st == stGlobal)
2375 # define GCC_SYMINC(X) (1)
2376 # define GCC_SYMZERO(X) (SYMHEADER(X).isymMax)
2377 # define GCC_CHECK_HDR(X) (PSYMTAB(X) != 0)
2381 # define GCC_SYMBOLS(X) (HEADER(ldptr).f_nsyms)
2382 # define GCC_SYMENT SYMENT
2383 # if defined (C_WEAKEXT)
2384 # define GCC_OK_SYMBOL(X) \
2385 (((X).n_sclass == C_EXT || (X).n_sclass == C_WEAKEXT) && \
2386 ((X).n_scnum > N_UNDEF) && \
2388 || (((X).n_type & N_TMASK) == (DT_NON << N_BTSHFT) \
2389 || ((X).n_type & N_TMASK) == (DT_FCN << N_BTSHFT))))
2390 # define GCC_UNDEF_SYMBOL(X) \
2391 (((X).n_sclass == C_EXT || (X).n_sclass == C_WEAKEXT) && \
2392 ((X).n_scnum == N_UNDEF))
2394 # define GCC_OK_SYMBOL(X) \
2395 (((X).n_sclass == C_EXT) && \
2396 ((X).n_scnum > N_UNDEF) && \
2398 || (((X).n_type & N_TMASK) == (DT_NON << N_BTSHFT) \
2399 || ((X).n_type & N_TMASK) == (DT_FCN << N_BTSHFT))))
2400 # define GCC_UNDEF_SYMBOL(X) \
2401 (((X).n_sclass == C_EXT) && ((X).n_scnum == N_UNDEF))
2403 # define GCC_SYMINC(X) ((X).n_numaux+1)
2404 # define GCC_SYMZERO(X) 0
2406 /* 0757 = U803XTOCMAGIC (AIX 4.3) and 0767 = U64_TOCMAGIC (AIX V5) */
2408 # define GCC_CHECK_HDR(X) \
2409 ((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2410 || (HEADER (X).f_magic == 0767 && aix64_flag))
2412 # define GCC_CHECK_HDR(X) \
2413 ((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2414 || (HEADER (X).f_magic == 0757 && aix64_flag))
2419 #ifdef COLLECT_EXPORT_LIST
2420 /* Array of standard AIX libraries which should not
2421 be scanned for ctors/dtors. */
2422 static const char *const aix_std_libs
[] = {
2430 "/usr/lib/libc_r.a",
2431 "/usr/lib/libm_r.a",
2432 "/usr/lib/threads/libc.a",
2433 "/usr/ccs/lib/libc.a",
2434 "/usr/ccs/lib/libm.a",
2435 "/usr/ccs/lib/libc_r.a",
2436 "/usr/ccs/lib/libm_r.a",
2440 /* This function checks the filename and returns 1
2441 if this name matches the location of a standard AIX library. */
2442 static int ignore_library (const char *);
2444 ignore_library (const char *name
)
2446 const char *const *p
= &aix_std_libs
[0];
2447 while (*p
++ != NULL
)
2448 if (! strcmp (name
, *p
)) return 1;
2451 #endif /* COLLECT_EXPORT_LIST */
2453 #if defined (HAVE_DECL_LDGETNAME) && !HAVE_DECL_LDGETNAME
2454 extern char *ldgetname (LDFILE
*, GCC_SYMENT
*);
2457 /* COFF version to scan the name list of the loaded program for
2458 the symbols g++ uses for static constructors and destructors.
2460 The constructor table begins at __CTOR_LIST__ and contains a count
2461 of the number of pointers (or -1 if the constructors are built in a
2462 separate section by the linker), followed by the pointers to the
2463 constructor functions, terminated with a null pointer. The
2464 destructor table has the same format, and begins at __DTOR_LIST__. */
2467 scan_prog_file (const char *prog_name
, enum pass which_pass
)
2469 LDFILE
*ldptr
= NULL
;
2470 int sym_index
, sym_count
;
2473 if (which_pass
!= PASS_FIRST
&& which_pass
!= PASS_OBJ
)
2476 #ifdef COLLECT_EXPORT_LIST
2477 /* We do not need scanning for some standard C libraries. */
2478 if (which_pass
== PASS_FIRST
&& ignore_library (prog_name
))
2481 /* On AIX we have a loop, because there is not much difference
2482 between an object and an archive. This trick allows us to
2483 eliminate scan_libraries() function. */
2487 /* Some platforms (e.g. OSF4) declare ldopen as taking a
2488 non-const char * filename parameter, even though it will not
2489 modify that string. So we must cast away const-ness here,
2490 using CONST_CAST to prevent complaints from -Wcast-qual. */
2491 if ((ldptr
= ldopen (CONST_CAST (char *, prog_name
), ldptr
)) != NULL
)
2493 if (! MY_ISCOFF (HEADER (ldptr
).f_magic
))
2494 fatal ("%s: not a COFF file", prog_name
);
2496 if (GCC_CHECK_HDR (ldptr
))
2498 sym_count
= GCC_SYMBOLS (ldptr
);
2499 sym_index
= GCC_SYMZERO (ldptr
);
2501 #ifdef COLLECT_EXPORT_LIST
2502 /* Is current archive member a shared object? */
2503 is_shared
= HEADER (ldptr
).f_flags
& F_SHROBJ
;
2506 while (sym_index
< sym_count
)
2510 if (ldtbread (ldptr
, sym_index
, &symbol
) <= 0)
2512 sym_index
+= GCC_SYMINC (symbol
);
2514 if (GCC_OK_SYMBOL (symbol
))
2518 if ((name
= ldgetname (ldptr
, &symbol
)) == NULL
)
2519 continue; /* Should never happen. */
2521 #ifdef XCOFF_DEBUGGING_INFO
2522 /* All AIX function names have a duplicate entry
2523 beginning with a dot. */
2528 switch (is_ctor_dtor (name
))
2532 add_to_list (&constructors
, name
);
2533 #if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
2534 if (which_pass
== PASS_OBJ
)
2535 add_to_list (&exports
, name
);
2541 add_to_list (&destructors
, name
);
2542 #if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
2543 if (which_pass
== PASS_OBJ
)
2544 add_to_list (&exports
, name
);
2548 #ifdef COLLECT_EXPORT_LIST
2550 #ifndef LD_INIT_SWITCH
2552 add_to_list (&constructors
, name
);
2557 #ifndef LD_INIT_SWITCH
2559 add_to_list (&destructors
, name
);
2566 add_to_list (&frame_tables
, name
);
2567 #if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
2568 if (which_pass
== PASS_OBJ
)
2569 add_to_list (&exports
, name
);
2573 default: /* not a constructor or destructor */
2574 #ifdef COLLECT_EXPORT_LIST
2575 /* Explicitly export all global symbols when
2576 building a shared object on AIX, but do not
2577 re-export symbols from another shared object
2578 and do not export symbols if the user
2579 provides an explicit export list. */
2580 if (shared_obj
&& !is_shared
2581 && which_pass
== PASS_OBJ
&& !export_flag
)
2582 add_to_list (&exports
, name
);
2588 #if !defined(EXTENDED_COFF)
2589 fprintf (stderr
, "\tsec=%d class=%d type=%s%o %s\n",
2590 symbol
.n_scnum
, symbol
.n_sclass
,
2591 (symbol
.n_type
? "0" : ""), symbol
.n_type
,
2595 "\tiss = %5d, value = %5ld, index = %5d, name = %s\n",
2596 symbol
.iss
, (long) symbol
.value
, symbol
.index
, name
);
2601 #ifdef COLLECT_EXPORT_LIST
2604 /* If archive contains both 32-bit and 64-bit objects,
2605 we want to skip objects in other mode so mismatch normal. */
2607 fprintf (stderr
, "%s : magic=%o aix64=%d mismatch\n",
2608 prog_name
, HEADER (ldptr
).f_magic
, aix64_flag
);
2614 fatal ("%s: cannot open as COFF file", prog_name
);
2616 #ifdef COLLECT_EXPORT_LIST
2617 /* On AIX loop continues while there are more members in archive. */
2619 while (ldclose (ldptr
) == FAILURE
);
2621 /* Otherwise we simply close ldptr. */
2622 (void) ldclose(ldptr
);
2625 #endif /* OBJECT_FORMAT_COFF */
2627 #ifdef COLLECT_EXPORT_LIST
2628 /* Given a library name without "lib" prefix, this function
2629 returns a full library name including a path. */
2631 resolve_lib_name (const char *name
)
2635 /* Library extensions for AIX dynamic linking. */
2636 const char * const libexts
[2] = {"a", "so"};
2638 for (i
= 0; libpaths
[i
]; i
++)
2639 if (libpaths
[i
]->max_len
> l
)
2640 l
= libpaths
[i
]->max_len
;
2642 lib_buf
= XNEWVEC (char, l
+ strlen(name
) + 10);
2644 for (i
= 0; libpaths
[i
]; i
++)
2646 struct prefix_list
*list
= libpaths
[i
]->plist
;
2647 for (; list
; list
= list
->next
)
2649 /* The following lines are needed because path_prefix list
2650 may contain directories both with trailing '/' and
2653 if (list
->prefix
[strlen(list
->prefix
)-1] != '/')
2655 for (j
= 0; j
< 2; j
++)
2657 sprintf (lib_buf
, "%s%slib%s.%s",
2658 list
->prefix
, p
, name
,
2659 libexts
[(j
+ aixrtl_flag
) % 2]);
2660 if (debug
) fprintf (stderr
, "searching for: %s\n", lib_buf
);
2661 if (file_exists (lib_buf
))
2663 if (debug
) fprintf (stderr
, "found: %s\n", lib_buf
);
2670 fprintf (stderr
, "not found\n");
2672 fatal ("library lib%s not found", name
);
2675 #endif /* COLLECT_EXPORT_LIST */