Changeset 100 for trunk/src/binutils/ld
- Timestamp:
- May 7, 2003, 5:00:11 PM (22 years ago)
- Location:
- trunk/src/binutils/ld
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/binutils/ld/ldctor.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r99 r100 363 363 if (e->name != NULL) 364 364 minfo ("%T\n", e->name); 365 else if (e->section->owner) 365 #ifdef __EMX__ /* r=bird: Is this workaround for a crash something? */ 366 else if (e->section->owner != NULL) 366 367 minfo ("%G\n", e->section->owner, e->section, e->value); 367 368 else 368 369 minfo ("*unknown*\n"); 370 #else 371 else 372 minfo ("%G\n", e->section->owner, e->section, e->value); 373 #endif 369 374 } 370 375 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/ld/ldemul.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r99 r100 305 305 } 306 306 307 /* Added by the EMX/OS2 port */ 307 308 void 308 309 ldemul_finish_link (char *filename) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/ld/ldemul.h
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r99 r100 140 140 PARAMS ((char *, struct lang_input_statement_struct *)); 141 141 142 /* Perform final action(s) on output file */ 142 /* Perform final action(s) on output file 143 Note: Added by the EMX/OS2 port, so keep it at the end! */ 143 144 void (*finish_link) PARAMS ((char *)); 144 145 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/ld/ldfile.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r99 r100 240 240 arch = arch->next) 241 241 { 242 #if defined (__EMX__) 242 #if defined (__EMX__) /* Target feature really, but no target define to test on. */ 243 243 found = ldfile_open_file_search (arch->name, entry, "", ".a"); 244 244 if (found) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/ld/ldmain.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r99 r100 406 406 einfo (_("%F%B: final close failed: %E\n"), output_bfd); 407 407 408 /* Perform the final actions on output file */ 408 /* Perform the final actions on output file 409 * (Added by the EMX/OS2 port) */ 409 410 ldemul_finish_link (output_filename); 410 411 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.