1999-05-03 15:29:11 +08:00
|
|
|
/* ldmain.h -
|
2005-03-03 19:52:12 +08:00
|
|
|
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1999, 2002, 2003, 2004,
|
|
|
|
2005 Free Software Foundation, Inc.
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
This file is part of GLD, the Gnu Linker.
|
|
|
|
|
|
|
|
GLD 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 1, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
GLD is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GLD; see the file COPYING. If not, write to the Free
|
2005-05-12 15:32:09 +08:00
|
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
02110-1301, USA. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#ifndef LDMAIN_H
|
|
|
|
#define LDMAIN_H
|
|
|
|
|
|
|
|
extern char *program_name;
|
2005-01-19 19:42:49 +08:00
|
|
|
extern const char *ld_sysroot;
|
2003-03-25 18:29:28 +08:00
|
|
|
extern char *ld_canon_sysroot;
|
|
|
|
extern int ld_canon_sysroot_len;
|
1999-05-03 15:29:11 +08:00
|
|
|
extern bfd *output_bfd;
|
|
|
|
extern char *default_target;
|
2002-11-30 16:39:46 +08:00
|
|
|
extern bfd_boolean trace_files;
|
|
|
|
extern bfd_boolean trace_file_tries;
|
|
|
|
extern bfd_boolean version_printed;
|
|
|
|
extern bfd_boolean whole_archive;
|
2004-03-18 20:50:20 +08:00
|
|
|
extern bfd_boolean as_needed;
|
2004-07-20 00:40:52 +08:00
|
|
|
extern bfd_boolean add_needed;
|
2002-11-30 16:39:46 +08:00
|
|
|
extern bfd_boolean demangling;
|
1999-05-03 15:29:11 +08:00
|
|
|
extern int g_switch_value;
|
|
|
|
extern const char *output_filename;
|
|
|
|
extern struct bfd_link_info link_info;
|
2003-05-07 12:14:57 +08:00
|
|
|
extern int overflow_cutoff_limit;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2003-06-28 13:28:54 +08:00
|
|
|
extern void add_ysym (const char *);
|
|
|
|
extern void add_wrap (const char *);
|
|
|
|
extern void add_keepsyms_file (const char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#endif
|