Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4383 Serge 1
/* Configuration for GCC for hosting on Windows32.
2
   using GNU tools and the Windows32 API Library.
3
   Copyright (C) 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2007
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 it under
9
the terms of the GNU General Public License as published by the Free
10
Software Foundation; either version 3, or (at your option) any later
11
version.
12
 
13
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14
WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16
for more details.
17
 
18
You should have received a copy of the GNU General Public License
19
along with GCC; see the file COPYING3.  If not see
20
.  */
21
 
22
#define HOST_EXECUTABLE_SUFFIX ".exe"
23
 
24
#undef PATH_SEPARATOR
25
#define PATH_SEPARATOR ';'
26
 
27
/* This is the name of the null device on windows.  */
28
#define HOST_BIT_BUCKET "nul"
29
 
30
/*  The st_ino field of struct stat is always 0.  */
31
#define HOST_LACKS_INODE_NUMBERS
32
 
33
/* MSVCRT does not support the "ll" format specifier for printing
34
   "long long" values.  Instead, we use "I64".  */
35
#define HOST_LONG_LONG_FORMAT "I64"