Changeset 100 for trunk/src/binutils/bfd
- Timestamp:
- May 7, 2003, 5:00:11 PM (22 years ago)
- Location:
- trunk/src/binutils/bfd
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/binutils/bfd/aoutx.h
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r99 r100 4268 4268 symsec = NULL; 4269 4269 } 4270 #ifdef EMX 4270 4271 else if ((type == (N_IMP1 | N_EXT)) 4271 || (type == (N_IMP2 | N_EXT)))4272 || (type == (N_IMP2 | N_EXT))) 4272 4273 symsec = bfd_abs_section_ptr; 4274 #endif 4273 4275 else if (IS_STAB(type)) 4274 4276 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/bfd/bfd-in2.h
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r99 r100 3076 3076 void 3077 3077 bfd_set_reloc PARAMS ((bfd *abfd, asection *sec, arelent **rel, unsigned int count) 3078 3078 3079 3079 ); 3080 3080 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/bfd/host-aout.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r99 r100 36 36 37 37 in the ./hosts/h-systemname.h file. */ 38 39 #ifndef __EMX__ /* r=bird: Code was initially removed. Is this __EMX__ or EMX 40 * and why don't we include it? anything to do with sysdep.h? */ 41 #ifdef TRAD_HEADER 42 #include TRAD_HEADER 43 #endif 44 #endif /* !__EMX__ */ 38 45 39 46 #ifdef HOST_PAGE_SIZE -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/bfd/sysdep.h
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r99 r100 27 27 #include "config.h" 28 28 29 #ifdef __EMX__ /* r=bird: hmm seen this before. */ 29 30 #ifdef TRAD_HEADER 30 31 #include TRAD_HEADER 31 32 #endif 33 #endif /* __EMX__ */ 32 34 33 35 #ifdef HAVE_STDDEF_H -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/binutils/bfd/trad-core.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r99 r100 44 44 #include <sys/user.h> /* After a.out.h */ 45 45 46 #ifndef __EMX__ /* r=bird: Code was initially removed. Is this __EMX__ or EMX 47 * and why don't we include it? anything to do with sysdep.h? */ 48 #ifdef TRAD_HEADER 49 #include TRAD_HEADER 50 #endif 51 #endif /* !__EMX__ */ 52 46 53 struct trad_core_struct 47 54 { 48 55 asection *data_section; 49 #ifdef __EMX__ 56 #ifdef __EMX__ /* r=bird: Isn't this a EMX (target) thing? */ 50 57 asection *heap_section; 51 58 #endif /* __EMX__ */ … … 57 64 #define core_upage(bfd) (&((bfd)->tdata.trad_core_data->u)) 58 65 #define core_datasec(bfd) ((bfd)->tdata.trad_core_data->data_section) 59 #ifdef __EMX__ 66 #ifdef __EMX__ /* r=bird: Isn't this a EMX (target) thing? */ 60 67 #define core_heapsec(bfd) ((bfd)->tdata.trad_core_data->heap_section) 61 68 #endif /* __EMX__ */ … … 99 106 100 107 /* Sanity check perhaps??? */ 101 #ifdef __EMX__ 108 #ifdef __EMX__ /* r=bird: Target (EMX) as well? */ 102 109 if (u.u_magic != UMAGIC) 103 110 return 0; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.