1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
/* $Id: system.h,v 1.16 2004/07/26 22:52:52 n8gray Exp $ */
/*******************************************************************************
* *
* system.h -- Compile Time Configuration Header File *
* *
* Copyright (C) 2001 Scott Tringali *
* *
* This 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 of the License, or (at your option) any later *
* version. In addition, you may distribute version of this program linked to *
* Motif or Open Motif. See README for details. *
* *
* This software 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 *
* software; if not, write to the Free Software Foundation, Inc., 59 Temple *
* Place, Suite 330, Boston, MA 02111-1307 USA *
* *
* Nirvana Text Editor *
* July 23, 2001 *
* *
* Written by Scott Tringali, http://www.tringali.org *
* *
*******************************************************************************/
#ifndef NEDIT_SYSTEM_H_INCLUDED
#define NEDIT_SYSTEM_H_INCLUDED
/*
Determine which machine we were compiled with. This isn't as accurate
as calling uname(), which is preferred. However, this gets us very close
for a majority of the machines out there, and doesn't require any games
with make.
A better, but trickier solution, is to run uname at compile time, capture
the string, and place it in the executable.
Please update this with the proper symbols for your compiler/CPU. It
may take a little sleuthing to find out what the correct symbol is.
Better compilers/OSs document the symbols they define, but not all do.
Usually, the correct ones are prepended with an _ or __, as this is
namespace is reserved by ANSI C for the compiler implementation.
The order is important for the x86 macros. Some compilers will
simulatenously define __i386 and __pentium, so we pick the highest one.
*/
#if defined(__alpha) || defined (_M_ALPHA)
# define COMPILE_MACHINE "Alpha"
#elif defined(__mips)
# define COMPILE_MACHINE "MIPS"
#elif defined(__sparc)
# define COMPILE_MACHINE "Sparc"
#elif defined(__hppa)
# define COMPILE_MACHINE "PA-RISC"
#elif defined(_POWER)
# define COMPILE_MACHINE "POWER"
#elif defined(__ALTIVEC__)
# define COMPILE_MACHINE "PowerPC Altivec"
#elif defined(__POWERPC__) || defined(__ppc__) || defined(__powerpc__)
# define COMPILE_MACHINE "PowerPC"
#elif defined(__x86_64) || defined(_x86_64)
# define COMPILE_MACHINE "x86-64"
#elif defined(__IA64) || defined(__ia64)
# define COMPILE_MACHINE "IA64"
#elif defined(__k6) || defined(__k6__)
# define COMPILE_MACHINE "K6"
#elif defined(__athlon) || defined(__athlon__)
# define COMPILE_MACHINE "Athlon"
#elif defined(__pentiumpro) || defined(__pentiumpro__)
# define COMPILE_MACHINE "Pentium Pro"
#elif defined(__pentium) || defined(__pentium__)
# define COMPILE_MACHINE "Pentium"
#elif defined(__i486) || defined(__i486__)
# define COMPILE_MACHINE "486"
#elif defined(__i386) || defined(__i386__)
# define COMPILE_MACHINE "386"
#elif defined(_M_IX86) || defined(_X86_)
# define COMPILE_MACHINE "x86"
#elif defined(__VAX)
# define COMPILE_MACHINE "VAX" /* Untested, please verify */
#else
# define COMPILE_MACHINE "Unknown"
#endif
#if defined(__osf__)
# define COMPILE_OS "Tru64/Digital Unix"
#elif defined(__sun)
# define COMPILE_OS "Solaris"
#elif defined(__hpux)
# define COMPILE_OS "HP/UX"
#elif defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
# define COMPILE_OS "Win32"
#elif defined(__sgi)
# define COMPILE_OS "IRIX"
#elif defined(__Lynx__)
# define COMPILE_OS "Lynx"
#elif defined(__linux__)
# define COMPILE_OS "Linux"
#elif defined(_AIX)
# define COMPILE_OS "AIX"
#elif defined(__VMS) /* Untested, please verify */
# define COMPILE_OS "VMS"
#elif defined(__FreeBSD__)
# define COMPILE_OS "FreeBSD"
#elif defined(__OpenBSD__) /* Untested, please verify */
# define COMPILE_OS "OpenBSD"
#elif defined(__NetBSD__) /* Untested, please verify */
# define COMPILE_OS "NetBSD"
#elif defined(__bsdi) /* Untested, please verify */
# define COMPILE_OS "BSDI"
#elif defined(__ultrix) /* Untested, please verify */
# define COMPILE_OS "Ultrix"
#elif defined(__EMX__) /* I think this should be __OS2__ */
# define COMPILE_OS "OS/2"
#elif defined(__APPLE__) || defined(__MACOSX__)
# define COMPILE_OS "MacOS X"
#elif defined(__UNIXWARE__)
# define COMPILE_OS "UnixWare"
#elif defined(__unix__) /* Unknown Unix, next to last */
# define COMPILE_OS "Unix"
#else
# define COMPILE_OS "Unknown"
#endif
/* Some of the info below derived from this excellent reference:
http://www.fortran-2000.com/ArnaudRecipes/Version.html */
#if (defined(__GNUC__) && !defined (__INTEL_COMPILER))
# define COMPILE_COMPILER "GNU C" /* Avoid Intel pretending to be gcc */
#elif defined (__DECC)
# define COMPILE_COMPILER "DEC C"
#elif defined (__DECCXX)
# define COMPILE_COMPILER "DEC C++"
#elif defined (__APOGEE)
# define COMPILE_COMPILER "Apogee"
#elif defined (__SUNPRO_C)
# define COMPILE_COMPILER "Forte C" /* aka Sun WorkShop Pro */
#elif defined (__SUNPRO_CC)
# define COMPILE_COMPILER "Forte C++" /* aka Sun WorkShop Pro */
#elif defined (__LCC__)
# define COMPILE_COMPILER "LCC"
#elif defined (_MSC_VER)
# define COMPILE_COMPILER "Microsoft C"
#elif defined (__BORLANDC__)
# define COMPILE_COMPILER "Borland C"
#elif defined (__sgi) && defined (_COMPILER_VERSION)
# define COMPILE_COMPILER "SGI MipsPro"
#elif defined (__xlC__) /* Unix version of IBM C */
# define COMPILE_COMPILER "IBM xlC"
#elif defined (__IBMC__)
# define COMPILE_COMPILER "IBM C" /* PC (OS/2, Windows) versions */
#elif defined (__HP_aCC)
# define COMPILE_COMPILER "HP aCC"
#elif defined (__KCC)
# define COMPILE_COMPILER "KAI C++"
#elif defined (__MWERKS__)
# define COMPILE_COMPILER "Metrowerks CodeWarrior"
#elif defined (__WATCOMC__)
# define COMPILE_COMPILER "Watcom C/C++"
#elif defined (__INTEL_COMPILER)
# define COMPILE_COMPILER "Intel C++"
#elif defined (__hpux) /* HP has no indentifier, so guessing here */
# define COMPILE_COMPILER "HP C [?]" /* Must be next to last */
#else
# define COMPILE_COMPILER "Unknown" /* Must be last */
#endif
#endif /* NEDIT_SYSTEM_H_INCLUDED */
|