diff options
author | Nick Clifton <nickc@redhat.com> | 2000-02-24 17:53:12 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-02-24 17:53:12 +0000 |
commit | 344a211f9995c36b116eb81c6d5a9d1839ba54b7 (patch) | |
tree | 44558d2be02cf2b2bd3c25dfefa1e34762509f8b /ld/ldemul.h | |
parent | cfcdbe979065f75a9cefa1925253a4e29c5b6fb1 (diff) | |
download | gdb-344a211f9995c36b116eb81c6d5a9d1839ba54b7.zip gdb-344a211f9995c36b116eb81c6d5a9d1839ba54b7.tar.gz gdb-344a211f9995c36b116eb81c6d5a9d1839ba54b7.tar.bz2 |
Add support for WinCE based toolchains.
Diffstat (limited to 'ld/ldemul.h')
-rw-r--r-- | ld/ldemul.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/ld/ldemul.h b/ld/ldemul.h index 350de06..b2d9103 100644 --- a/ld/ldemul.h +++ b/ld/ldemul.h @@ -1,5 +1,5 @@ /* ld-emul.h - Linker emulation header file - Copyright 1991, 92, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc. + Copyright 1991, 92, 93, 94, 95, 96, 97, 1998, 2000 Free Software Foundation, Inc. This file is part of GLD, the Gnu Linker. @@ -55,6 +55,8 @@ extern void before_allocation_default PARAMS ((void)); extern void set_output_arch_default PARAMS ((void)); extern void syslib_default PARAMS ((char*)); extern void hll_default PARAMS ((char*)); +extern int ldemul_find_potential_libraries + PARAMS ((char *, struct lang_input_statement_struct *)); typedef struct ld_emulation_xfer_struct { @@ -135,6 +137,13 @@ typedef struct ld_emulation_xfer_struct boolean (*recognized_file) PARAMS ((struct lang_input_statement_struct *)); + /* Called when looking for libraries in a directory specified + via a linker command line option or linker script option. + Files that match the pattern "lib*.a" have already been scanned. + (For VMS files matching ":lib*.a" have also been scanned). */ + int (* find_potential_libraries) + PARAMS ((char *, struct lang_input_statement_struct *)); + } ld_emulation_xfer_type; typedef enum |