home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / config / tm-hp9k2bsd.h < prev    next >
C/C++ Source or Header  |  1991-06-03  |  2KB  |  69 lines

  1. /* Definitions of target machine for GNU compiler.  HP 9000/200 68000 version.
  2.    Copyright (C) 1987 - 1991 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. /*
  21.  * $Log:    tm-hp9k2bsd.h,v $
  22.  * Revision 1.2  90/10/09  19:14:31  root
  23.  * Make sure to link in libg.a when debugging for gdb/gdb/etc.
  24.  * 1.38 & 1.91 Change
  25.  * 
  26.  * Revision 1.1  90/10/09  19:12:00  root
  27.  * Initial revision
  28.  * 
  29.  */
  30.  
  31. #include "tm-m68k.h"
  32.  
  33. /* See tm-m68k.h.  0 means 68000 with no 68881.  */
  34.  
  35. #define TARGET_DEFAULT -0102
  36.  
  37. /* Define __HAVE_68881 in preprocessor only if -m68881 is specified.
  38.    This will control the use of inline 68881 insns in certain macros.
  39.    Also inform the program which CPU this is for.  */
  40.  
  41. #define CPP_SPEC "%{m68881:-D__HAVE_68881__} \
  42. %{!ansi:%{m68020:-Dmc68020}%{mc68020:-Dmc68020}%{!mc68020:%{!m68020:-Dmc68010}}}"
  43.  
  44. /* -m68020 requires special flags to the assembler.  */
  45.  
  46. #define ASM_SPEC \
  47.  "%{m68020:-mc68020}%{mc68020:-mc68020}%{!mc68020:%{!m68020:-mc68010}}"
  48.  
  49. /* Names to predefine in the preprocessor for this target machine.  */
  50.  
  51. #define CPP_PREDEFINES "-Dmc68000 -Dmc68010 -Dhp200 -Dunix"
  52.  
  53. /* Link with libg.a when debugging, for dbx's sake.  */
  54.  
  55. #define LIB_SPEC "%{g:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p} "
  56.  
  57. /* Alignment of field after `int : 0' in a structure.  */
  58.  
  59. #undef EMPTY_FIELD_BOUNDARY
  60. #define EMPTY_FIELD_BOUNDARY 16
  61.  
  62. /* Every structure or union's size must be a multiple of 2 bytes.  */
  63.  
  64. #define STRUCTURE_SIZE_BOUNDARY 16
  65.  
  66. /* This is BSD, so it wants DBX format.  */
  67.  
  68. #define DBX_DEBUGGING_INFO
  69.