Changeset 99 for trunk/src/binutils/ld
- Timestamp:
- May 7, 2003, 2:12:21 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/binutils/ld/emultempl/i386aoutemx.em
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r98 r99 64 64 65 65 # sed commands to quote an ld script as a C string. 66 sc="-f ${srcdir}/emultempl/stringify.sed" 66 # bird: stringify.sed is in current directory. 67 sc="-f stringify.sed" 67 68 68 69 #cat >>e${EMULATION_NAME}.c <<EOF … … 143 144 parse (arg, format, error) 144 145 char *arg, *format; 146 int error; 145 147 { 146 148 int x; … … 176 178 #include <sys/types.h> 177 179 #include <sys/stat.h> 180 /* bird: clash with abort macro in ld should really include this earlier 181 * Quick fix is to undefine the abort macro. 182 */ 183 #undef abort 178 184 #include <process.h> 185 #define abort() ld_abort (__FILE__, __LINE__, __PRETTY_FUNCTION__) 186 /* bird: include headers for alloca and utime too please */ 187 #include <alloca.h> 188 #include <sys/utime.h> 179 189 180 190 static const char *exe_filename; … … 324 334 ext = _getext (entry->filename); 325 335 if (ext != NULL) 336 { 326 337 if (stricmp (ext, ".def") == 0) 327 338 { … … 336 347 return true; 337 348 } 349 } 338 350 339 351 return false; … … 513 525 gld_${EMULATION_NAME}_parse_args, 514 526 gld_${EMULATION_NAME}_unrecognized_file, 527 NULL, /* list_options */ 528 NULL, /* recognized_file */ 529 NULL, /* find_potential_libraries */ 515 530 gld_${EMULATION_NAME}_finish_link 516 531 }; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.