diff options
Diffstat (limited to 'ld/ld.h')
-rw-r--r-- | ld/ld.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -84,6 +84,12 @@ typedef struct /* If true, build MIPS embedded PIC relocation tables in the output file. */ boolean embedded_relocs; + + /* If true, force generation of a file with a .exe file. */ + boolean force_exe_suffix; + + /* If true, generate a cross reference report. */ + boolean cref; } args_type; extern args_type command_line; @@ -145,4 +151,7 @@ extern int parsing_defsym; extern int yyparse PARAMS ((void)); +extern void add_cref PARAMS ((const char *, bfd *, asection *, bfd_vma)); +extern void output_cref PARAMS ((FILE *)); + #endif |