diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-07-22 15:13:33 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-07-22 15:13:33 +0000 |
commit | 2aaaab7ceb246c0a3ee1750fca8d207586ab02e6 (patch) | |
tree | d73e30077fcdaf1f840cbb69fc6b16a8bc68db28 /bfd/aoutx.h | |
parent | bb99a7328cd5b0271f8ed4948fa80c924c6717b5 (diff) | |
download | gdb-2aaaab7ceb246c0a3ee1750fca8d207586ab02e6.zip gdb-2aaaab7ceb246c0a3ee1750fca8d207586ab02e6.tar.gz gdb-2aaaab7ceb246c0a3ee1750fca8d207586ab02e6.tar.bz2 |
* aoutx.h (NAME(aout,some_aout_object_p)): Just check
STAT_FOR_EXEC, don't check MACH.
* m88kmach3.c (MACH): Don't define.
* config/i386-mach3.mt (TDEFINES): Define STAT_FOR_EXEC.
* config/m88k-mach3.mt (TDEFINES): Likewise.
* config/mips-mach3.mt (TDEFINES): Likewise.
Diffstat (limited to 'bfd/aoutx.h')
-rw-r--r-- | bfd/aoutx.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/aoutx.h b/bfd/aoutx.h index 0bcc860..f350cb4 100644 --- a/bfd/aoutx.h +++ b/bfd/aoutx.h @@ -562,7 +562,7 @@ NAME(aout,some_aout_object_p) (abfd, execp, callback_to_real_object_p) result = (*callback_to_real_object_p)(abfd); -#if defined(MACH) || defined(STAT_FOR_EXEC) +#ifdef STAT_FOR_EXEC /* The original heuristic doesn't work in some important cases. The * a.out file has no information about the text start address. For * files (like kernels) linked to non-standard addresses (ld -Ttext @@ -578,7 +578,7 @@ NAME(aout,some_aout_object_p) (abfd, execp, callback_to_real_object_p) && ((stat_buf.st_mode & 0111) != 0)) abfd->flags |= EXEC_P; } -#else /* ! MACH */ +#else /* ! defined (STAT_FOR_EXEC) */ /* Now that the segment addresses have been worked out, take a better guess at whether the file is executable. If the entry point is within the text segment, assume it is. (This makes files @@ -590,7 +590,7 @@ NAME(aout,some_aout_object_p) (abfd, execp, callback_to_real_object_p) if ((execp->a_entry >= obj_textsec(abfd)->vma) && (execp->a_entry < obj_textsec(abfd)->vma + obj_textsec(abfd)->_raw_size)) abfd->flags |= EXEC_P; -#endif /* MACH */ +#endif /* ! defined (STAT_FOR_EXEC) */ if (result) { #if 0 /* These should be set correctly anyways. */ |