2 * Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.
4 * This file is part of Jam - see jam.c for Copyright information.
7 * jam.h - includes and globals for jam
9 * 04/08/94 (seiwald) - Coherent/386 support added.
10 * 04/21/94 (seiwald) - DGUX is __DGUX__, not just __DGUX.
11 * 05/04/94 (seiwald) - new globs.jobs (-j jobs)
12 * 11/01/94 (wingerd) - let us define path of Jambase at compile time.
13 * 12/30/94 (wingerd) - changed command buffer size for NT (MS-DOS shell).
14 * 02/22/95 (seiwald) - Jambase now in /usr/local/lib.
15 * 04/30/95 (seiwald) - FreeBSD added. Live Free or Die.
16 * 05/10/95 (seiwald) - SPLITPATH character set up here.
17 * 08/20/95 (seiwald) - added LINUX.
18 * 08/21/95 (seiwald) - added NCR.
19 * 10/23/95 (seiwald) - added SCO.
20 * 01/03/96 (seiwald) - SINIX (nixdorf) added.
21 * 03/13/96 (seiwald) - Jambase now compiled in; remove JAMBASE variable.
22 * 04/29/96 (seiwald) - AIX now has 31 and 42 OSVERs.
23 * 11/21/96 (peterk) - added BeOS with MW CW mwcc
24 * 12/21/96 (seiwald) - OSPLAT now defined for NT.
25 * 07/19/99 (sickel) - Mac OS X Server and Client support added
26 * 02/22/01 (seiwald) - downshift paths on case-insensitive macintosh
27 * 03/23/01 (seiwald) - VMS C++ changes.
28 * 10/29/01 (brett) - More IA64 ifdefs for MS.
29 * 02/18/00 (belmonte)- Support for Cygwin.
30 * 09/12/00 (seiwald) - OSSYMS split to OSMAJOR/OSMINOR/OSPLAT
31 * 12/29/00 (seiwald) - OSVER dropped.
32 * 01/21/02 (seiwald) - new -q to quit quickly on build failure
33 * 03/16/02 (seiwald) - support for -g (reorder builds by source time)
34 * 03/20/02 (seiwald) - MINGW porting from Max Blagai
35 * 08/16/02 (seiwald) - BEOS porting from Ingo Weinhold
36 * 09/19/02 (seiwald) - new -d displays
37 * 11/05/02 (seiwald) - OSPLAT now set to sparc on solaris.
43 # define JAMFA_PURE __attribute__((pure))
44 # define JAMFA_CONST __attribute__((const))
45 # define JAMFA_NORETURN __attribute__((noreturn))
46 # define JAMFA_PRINTF(m,n) __attribute__((format(printf, m, n)))
47 # define JAMFA_SENTINEL __attribute__((sentinel))
51 # define JAMFA_NORETURN
52 # define JAMFA_PRINTF(m,n)
53 # define JAMFA_SENTINEL
68 # define OSMAJOR "NT=true"
69 # define OSMINOR "OS=NT"
71 # define SPLITPATH ';'
72 # define MAXLINE 2046 /* longest 'together' actions */
73 /*# define USE_EXECNT*/
74 # define PATH_DELIM '\\'
75 # define DOWNSHIFT_PATHS
90 # define OSMAJOR "MINGW=true"
91 # define OSMINOR "OS=MINGW"
93 # define SPLITPATH ';'
94 # define MAXLINE 996 /* longest 'together' actions */
95 # define PATH_DELIM '\\'
96 # define DOWNSHIFT_PATHS
100 /* God fearing UNIX */
102 # define OSMAJOR "UNIX=true"
103 # define USE_FILEUNIX
104 # define PATH_DELIM '/'
106 # define OSMINOR "OS=FREEBSD"
110 # define OSMINOR "OS=LINUX"
115 # define OSMINOR "OS=NETBSD"
121 # define OSMINOR "OS=QNXNTO"
125 # define OSMINOR "OS=QNX"
133 # define OSMINOR "OS=MACOSX"
137 # define OSMINOR "OS=UNKNOWN"
139 /* All the UNIX includes */
140 # include <sys/types.h>
141 # include <sys/stat.h>
143 # include <sys/file.h>
157 # if !defined(OS_BSDI) && \
158 !defined(OS_FREEBSD) && \
159 !defined(OS_NEXT) && \
160 !defined(OS_MACHTEN) && \
161 !defined(OS_MACOSX) && \
162 !defined(OS_RHAPSODY) && \
166 # include <sys/types.h>
167 # include <sys/wait.h>
172 /* OSPLAT definitions - suppressed when it's a one-of-a-kind */
173 #if defined(_M_PPC) || \
176 defined(__powerpc__) || \
177 defined(__POWERPC__) || \
179 # define OSPLAT "OSPLAT=PPC"
182 #if defined(_i386_) || \
183 defined(__i386__) || \
185 # if !defined(OS_FREEBSD) && \
187 # define OSPLAT "OSPLAT=X86"
192 # if !defined( OS_SUNOS )
193 # define OSPLAT "OSPLAT=SPARC"
198 # if !defined( OS_SGI )
199 # define OSPLAT "OSPLAT=MIPS"
204 # define OSPLAT "OSPLAT=ARM"
207 #if defined(__ia64__) || defined(__IA64__) || defined(_M_IA64)
208 # define OSPLAT "OSPLAT=IA64"
212 # define OSPLAT "OSPLAT=390"
220 /* Jam implementation misc. */
221 /* longest 'together' actions' */
223 # define MAXLINE (10240)
232 # define SPLITPATH ':'
236 /* You probably don't need to muck with these. */
237 #define MAXSYM (1024) /* longest symbol in the environment */
238 #define MAXJPATH (1024) /* longest filename */
240 #define MAXJOBS (64) /* silently enforce -j limit */
241 #define MAXARGC (32) /* words in $(JAMSHELL) */
244 /* Jam private definitions below. */
245 #define DEBUG_MAX (15)
251 int newestfirst
; /* build newest sources first */
252 char debug
[DEBUG_MAX
];
253 FILE *cmdout
; /* print cmds, not run them */
254 //#ifdef OPT_IMPROVED_PROGRESS_EXT
255 int updating
; /* # targets we are updating */
256 void *progress
; /* progress data (progress.h) */
260 extern struct globs globs
;
263 #define DEBUG_MAKE (globs.debug[1]) /* -da show actions when executed */
264 #define DEBUG_MAKEPROG (globs.debug[3]) /* -dm show progress of make0 */
266 #define DEBUG_EXECCMD (globs.debug[4]) /* show execcmds()'s work */
268 #define DEBUG_COMPILE (globs.debug[5]) /* show rule invocations */
270 #define DEBUG_HEADER (globs.debug[6]) /* show result of header scan */
271 #define DEBUG_BINDSCAN (globs.debug[6]) /* show result of dir scan */
272 #define DEBUG_SEARCH (globs.debug[6]) /* show attempts at binding */
274 #define DEBUG_VARSET (globs.debug[7]) /* show variable settings */
275 #define DEBUG_VARGET (globs.debug[8]) /* show variable fetches */
276 #define DEBUG_VAREXP (globs.debug[8]) /* show variable expansions */
277 #define DEBUG_IF (globs.debug[8]) /* show 'if' calculations */
278 #define DEBUG_LISTS (globs.debug[9]) /* show list manipulation */
279 #define DEBUG_SCAN (globs.debug[9]) /* show scanner tokens */
280 #define DEBUG_MEM (globs.debug[9]) /* show memory use */
282 #define DEBUG_MAKEQ (globs.debug[11]) /* -da show even quiet actions */
283 #define DEBUG_EXEC (globs.debug[12]) /* -dx show text of actions */
284 #define DEBUG_DEPENDS (globs.debug[13]) /* -dd show dependency graph */
285 #define DEBUG_CAUSES (globs.debug[14]) /* -dc show dependency graph */