1 /* Definitions of target machine for GNU compiler. 2 NetBSD/vax a.out version. 3 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 4 Free Software Foundation, Inc. 5 6 This file is part of GCC. 7 8 GCC is free software; you can redistribute it and/or modify 9 it under the terms of the GNU General Public License as published by 10 the Free Software Foundation; either version 2, or (at your option) 11 any later version. 12 13 GCC is distributed in the hope that it will be useful, 14 but WITHOUT ANY WARRANTY; without even the implied warranty of 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 GNU General Public License for more details. 17 18 You should have received a copy of the GNU General Public License 19 along with GCC; see the file COPYING. If not, write to 20 the Free Software Foundation, 51 Franklin Street, Fifth Floor, 21 Boston, MA 02110-1301, USA. */ 22 23 24 #define TARGET_OS_CPP_BUILTINS() \ 25 do \ 26 { \ 27 NETBSD_OS_CPP_BUILTINS_AOUT(); \ 28 } \ 29 while (0) 30 31 #undef CPP_SPEC 32 #define CPP_SPEC NETBSD_CPP_SPEC 33 34 /* Make gcc agree with <machine/ansi.h> */ 35 36 #undef SIZE_TYPE 37 #define SIZE_TYPE "unsigned int" 38 39 #undef PTRDIFF_TYPE 40 #define PTRDIFF_TYPE "int" 41 42 /* Until they use ELF or something that handles dwarf2 unwinds 43 and initialization stuff better. Use sjlj exceptions. */ 44 #undef DWARF2_UNWIND_INFO 45 46 /* We use gas, not the UNIX assembler. */ 47 #undef TARGET_DEFAULT 48 #define TARGET_DEFAULT 0 49