diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-17 23:23:55 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-17 23:23:55 +0000 |
commit | bb5796b1712ceb50efce729b7c3f8cee5c74218e (patch) | |
tree | e8a4d1695e7ef0abc676a988d0055468d86845d0 /gcc/config/i386/xm-djgpp.h | |
parent | 9862eda4e4386abe4f89ac928860afdaa7034055 (diff) | |
download | gcc-bb5796b1712ceb50efce729b7c3f8cee5c74218e.tar.gz |
* config/i386/go32.h: Delete.
* config/i386/djgpp.h: New. Renamed from go32.h.
Added -DDJGPP=2 to CPP_PREDEFINES.
* config/i386/go32-rtems.h: Delete.
* config/i386/djgpp-rtems.h: New. Renamed from go32-rtems.h.
Added -DDJGPP=2 to CPP_PREDEFINES.
* config/i386/xm-go32.h: Delete.
* config/i386/xm-djgpp.h: New. Renamed from xm-go32.h.
* config/i386/x-go32: Delete.
* config/i386/x-djgpp: New. Renamed from x-go32.
* config/i386/t-go32: Delete.
* config/i386/t-djgpp: New. Renamed from t-go32.
* configure.in(pc-msdosdjgpp): Set xm_file to i386/xm-djgpp.h.
Set tm_file to i386/djgpp.h. Set tmake_file to i386/t-djgpp.
Set xmake_file to i386/x-djgpp.
* configure: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25835 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/xm-djgpp.h')
-rw-r--r-- | gcc/config/i386/xm-djgpp.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gcc/config/i386/xm-djgpp.h b/gcc/config/i386/xm-djgpp.h new file mode 100644 index 00000000000..d5fac90fa18 --- /dev/null +++ b/gcc/config/i386/xm-djgpp.h @@ -0,0 +1,36 @@ +/* Configuration for GNU C-compiler for Intel 80386 running DJGPP. + Copyright (C) 1988, 1996, 1998, 1999 Free Software Foundation, Inc. + +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. */ + +#define __MSDOS__ 1 + +#include "i386/xm-i386.h" + +/* Use semicolons to separate elements of a path. */ +#define PATH_SEPARATOR ';' + +#define EXECUTABLE_SUFFIX ".exe" + +/* Even though we support "/", allow "\" since everybody tests both. */ +#define DIR_SEPARATOR '\\' + +#define NO_SYS_SIGLIST 1 + +#define LIBSTDCXX "-lstdcxx" + |