home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / gccsrc3.lzh / GCCSRC3 / XM-ATARI.H < prev    next >
C/C++ Source or Header  |  1993-07-23  |  806b  |  34 lines

  1. /* The following Macros control the compilation
  2.  *
  3.  *    CROSSATARI    defined when making cross compiler for TOS or Minix
  4.  *    MINIX        defined when making cross compiler for MINIX only
  5.  *    atariminix    defined when making compiler for MINIX
  6.  *    atarist        defined when making compiler for TOS
  7.  */
  8.  
  9. /* we use an extra file, as we don't do links */
  10.  
  11. /* generic m68k config file */
  12.  
  13. #include "xm-m68k.h"
  14.  
  15. /* exc that we don't want the funny alloca... */
  16.  
  17. #ifndef CROSSATARI
  18. #ifndef atarist
  19. #undef alloca
  20. #endif
  21. #endif
  22.  
  23. /* #include "stddef.h" */
  24.  
  25.  
  26. /* for new-version (format 2) symsegs, as defined by the symseg.h
  27.    taken from gdb */
  28. typedef long CORE_ADDR;
  29.  
  30. /* Oops.  Looks like this won't work anyhow; new GDB read syms 
  31.    incrementally, so we can't use it.  Use GDB 2.6; old symseg fmt...
  32. #define FORMAT_2_SYMSEG
  33. ...*/
  34.