home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mitsch75.zip / scheme-7_5_17-src.zip / scheme-7.5.17 / src / compiler / machines / sparc / cf.h-sparc < prev    next >
Text File  |  1999-01-02  |  2KB  |  73 lines

  1. /* -*-C-*-
  2.  
  3. $Id: cf.h-sparc,v 1.2 1999/01/02 06:06:43 cph Exp $
  4.  
  5. Copyright (c) 1989-1999 Massachusetts Institute of Technology
  6.  
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or (at
  10. your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful, but
  13. WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21.  
  22. #define PROC_TYPE_UNKNOWN    0
  23. #define PROC_TYPE_68000        1
  24. #define PROC_TYPE_68020        2
  25. #define PROC_TYPE_HPPA        3    /* HP Precision Architecture */
  26. #define PROC_TYPE_VAX        4
  27. #define PROC_TYPE_MIPS        5
  28. #define PROC_TYPE_NS32K        6
  29. #define PROC_TYPE_HCX        7    /* Harris HCX */
  30. #define PROC_TYPE_IBM032    8    /* IBM RT */
  31. #define PROC_TYPE_SPARC        9
  32. #define PROC_TYPE_I386        10
  33. #define PROC_TYPE_ALPHA        11
  34. #define PROC_TYPE_POWER        12    /* IBM RS6000 and PowerPC */
  35.  
  36. /* Define this macro to use a non-standard compiler.
  37.    It must be defined before including the m/ and s/ files because
  38.    they may be conditionalized on it. */
  39.  
  40. #define ALTERNATE_CC gcc-2.3.3
  41.  
  42. /* Define this macro to use a non-standard assembler. */
  43. /* #define ALTERNATE_AS gashp */
  44.  
  45. #include "s.h"
  46. #include "m.h"
  47.  
  48. #ifndef PROC_TYPE
  49. #define PROC_TYPE PROC_TYPE_UNKNOWN
  50. #endif
  51.  
  52. /* Define HAVE_X_WINDOWS if you want to use the X window system.  */
  53. #define HAVE_X_WINDOWS
  54.  
  55. /* Define HAVE_STARBASE_GRAPHICS if you want Starbase graphics support.
  56.    This is specific to HP-UX. */
  57. /* #define HAVE_STARBASE_GRAPHICS */
  58. /* #define STARBASE_DEVICE_DRIVERS -ldd300h -ldd98700 -ldd98710 -ldd98556 */
  59.  
  60. /* Some compilation options:
  61.    -DDISABLE_HISTORY        turns off history recording mechanism */
  62. #define C_SWITCH_FEATURES
  63.  
  64. /* The following two switches are mutually exclusive for most C compilers.
  65.    An exception is the GNU C compiler. */
  66.  
  67. /* If defined, this prevents the C compiler from running its optimizer. */
  68. #define SUPPRESS_C_OPTIMIZER 
  69.  
  70. /* If defined, this prevents the C compiler from
  71.    generating debugging information. */
  72. #define SUPPRESS_C_DEBUGGING
  73.