diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-28 21:41:54 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-28 21:41:54 +0000 |
commit | 49d31318a9acefcd1e15787ffff99e29d4570723 (patch) | |
tree | 9d3ab552348ad10b0ee1a36cdb1f73041d3fbb30 /gcc/config/i386 | |
parent | 2f79c7a649a12362aa3ab270e537d0c05af70c6b (diff) | |
download | gcc-49d31318a9acefcd1e15787ffff99e29d4570723.tar.gz |
* config.gcc (i[34567]86-*-interix3*): New case.
* config/x-interix3, config/interix3.h, config/i386/i386interix3.h:
New files.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47428 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386')
-rw-r--r-- | gcc/config/i386/i386-interix3.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gcc/config/i386/i386-interix3.h b/gcc/config/i386/i386-interix3.h new file mode 100644 index 00000000000..274972b5e4b --- /dev/null +++ b/gcc/config/i386/i386-interix3.h @@ -0,0 +1,32 @@ +/* Target definitions for GNU compiler for Intel 80386 running Interix V3. + Copyright (C) 2001 Free Software Foundation, Inc. + Contributed by Douglas B. Rupp (rupp@gnat.com) + +This file is part of GNU CC. + +GNU CC is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU CC is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU CC; see the file COPYING. If not, write to +the Free Software Foundation, 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. */ + +#undef CPP_SPEC +#define CPP_SPEC "\ +%{!.S: -D__LANGUAGE_C__ -D__LANGUAGE_C %{!ansi:-DLANGUAGE_C}} \ +%{.S: -D__LANGUAGE_ASSEMBLY__ -D__LANGUAGE_ASSEMBLY %{!ansi:-DLANGUAGE_ASSEMBLY}} \ +%{.cc: -D__LANGUAGE_C_PLUS_PLUS__ -D__LANGUAGE_C_PLUS_PLUS -D__cplusplus} \ +%{.cxx: -D__LANGUAGE_C_PLUS_PLUS__ -D__LANGUAGE_C_PLUS_PLUS -D__cplusplus} \ +%{.C: -D__LANGUAGE_C_PLUS_PLUS__ -D__LANGUAGE_C_PLUS_PLUS -D__cplusplus} \ +%{.m: -D__LANGUAGE_OBJECTIVE_C__ -D__LANGUAGE_OBJECTIVE_C} \ +%(cpp_cpu) \ +%{posix:-D_POSIX_SOURCE}" + |