Changeset 86 for trunk/src/binutils/ld
- Timestamp:
- May 3, 2003, 11:45:43 PM (22 years ago)
- Location:
- trunk/src/binutils/ld
- Files:
-
- 3 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/binutils/ld/Makefile.in
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r85 r86 1317 1317 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS} 1318 1318 ${GENSCRIPTS} i386pe_posix "$(tdir_i386pe_posix)" 1319 ei386aoutemx.c: $(srcdir)/emulparams/i386aout.sh \ 1320 $(srcdir)/emultempl/i386aoutemx.em $(srcdir)/scripttempl/i386aoutemx.sc ${GEN_DEPENDS} 1321 ${GENSCRIPTS} i386aoutemx "$(tdir_i386aoutemx)" 1319 1322 elnk960.c: $(srcdir)/emulparams/lnk960.sh \ 1320 1323 $(srcdir)/emultempl/lnk960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS} -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/ld/configure.host
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r85 r86 223 223 ;; 224 224 225 *-*-os2*) 226 HLDFLAGS="-s -Zexe -Zcrtdll" 227 NATIVE_LIB_DIRS=/emx/lib 225 228 esac -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/ld/configure.tgt
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r85 r86 171 171 i[3456]86-*-interix*) targ_emul=i386pe_posix; 172 172 targ_extra_ofiles="deffilep.o pe-dll.o" ;; 173 i[3456]86-*-os2) targ_emul=i386aoutemx; tdir_i386emx=i386aoutemx ;; 173 174 i[3456]86-*-beospe*) targ_emul=i386beos ;; 174 175 i[3456]86-*-beos*) targ_emul=elf_i386_be ;; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/ld/ldctor.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r85 r86 363 363 if (e->name != NULL) 364 364 minfo ("%T\n", e->name); 365 else 365 else if (e->section->owner) 366 366 minfo ("%G\n", e->section->owner, e->section, e->value); 367 else 368 minfo ("*unknown*\n"); 367 369 } 368 370 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/ld/ldemul.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r85 r86 304 304 return 0; 305 305 } 306 307 void 308 ldemul_finish_link (char *filename) 309 { 310 if (ld_emulation->finish_link) 311 ld_emulation->finish_link (filename); 312 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/ld/ldemul.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r85 r86 140 140 PARAMS ((char *, struct lang_input_statement_struct *)); 141 141 142 /* Perform final action(s) on output file */ 143 void (*finish_link) PARAMS ((char *)); 144 142 145 } ld_emulation_xfer_type; 143 146 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/ld/ldfile.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r85 r86 240 240 arch = arch->next) 241 241 { 242 #if defined (__EMX__) 243 found = ldfile_open_file_search (arch->name, entry, "", ".a"); 244 if (found) 245 break; 246 #endif /* __EMX__ */ 242 247 found = ldfile_open_file_search (arch->name, entry, "lib", ".a"); 243 248 if (found) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/ld/ldmain.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r85 r86 174 174 textdomain (PACKAGE); 175 175 176 #ifdef __EMX__ 177 _response (&argc, &argv); 178 program_name = _getname(argv[0]); 179 #else 176 180 program_name = argv[0]; 181 #endif 177 182 xmalloc_set_program_name (program_name); 178 183 … … 400 405 if (! bfd_close (output_bfd)) 401 406 einfo (_("%F%B: final close failed: %E\n"), output_bfd); 407 408 /* Perform the final actions on output file */ 409 ldemul_finish_link (output_filename); 402 410 403 411 /* If the --force-exe-suffix is enabled, and we're making an -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.