VirtualBox

source: kBuild/trunk/src/kmk/make.h@ 2046

Last change on this file since 2046 was 2041, checked in by bird, 16 years ago

kmk: fixed gcc 3.2.3 issue.

  • Property svn:eol-style set to native
File size: 25.4 KB
Line 
1/* Miscellaneous global declarations and portability cruft for GNU Make.
2Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
31998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software
4Foundation, Inc.
5This file is part of GNU Make.
6
7GNU Make is free software; you can redistribute it and/or modify it under the
8terms of the GNU General Public License as published by the Free Software
9Foundation; either version 3 of the License, or (at your option) any later
10version.
11
12GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License along with
17this program. If not, see <http://www.gnu.org/licenses/>. */
18
19/* We use <config.h> instead of "config.h" so that a compilation
20 using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
21 (which it would do because make.h was found in $srcdir). */
22#include <config.h>
23#undef HAVE_CONFIG_H
24#define HAVE_CONFIG_H 1
25
26/* AIX requires this to be the first thing in the file. */
27#ifndef __GNUC__
28# if HAVE_ALLOCA_H
29# include <alloca.h>
30# else
31# ifdef _AIX
32 #pragma alloca
33# else
34# ifndef alloca /* predefined by HP cc +Olibcalls */
35char *alloca ();
36# endif
37# endif
38# endif
39#endif
40
41
42/* Specify we want GNU source code. This must be defined before any
43 system headers are included. */
44
45#define _GNU_SOURCE 1
46
47
48#ifdef CRAY
49/* This must happen before #include <signal.h> so
50 that the declaration therein is changed. */
51# define signal bsdsignal
52#endif
53
54/* If we're compiling for the dmalloc debugger, turn off string inlining. */
55#if defined(HAVE_DMALLOC_H) && defined(__GNUC__)
56# define __NO_STRING_INLINES
57#endif
58
59#include <sys/types.h>
60#include <sys/stat.h>
61#include <signal.h>
62#include <stdio.h>
63#include <ctype.h>
64#ifdef HAVE_SYS_TIMEB_H
65/* SCO 3.2 "devsys 4.2" has a prototype for `ftime' in <time.h> that bombs
66 unless <sys/timeb.h> has been included first. Does every system have a
67 <sys/timeb.h>? If any does not, configure should check for it. */
68# include <sys/timeb.h>
69#endif
70
71#if TIME_WITH_SYS_TIME
72# include <sys/time.h>
73# include <time.h>
74#else
75# if HAVE_SYS_TIME_H
76# include <sys/time.h>
77# else
78# include <time.h>
79# endif
80#endif
81
82#include <errno.h>
83
84#ifndef errno
85extern int errno;
86#endif
87
88#ifndef isblank
89# define isblank(c) ((c) == ' ' || (c) == '\t')
90#endif
91
92#ifdef HAVE_UNISTD_H
93# include <unistd.h>
94/* Ultrix's unistd.h always defines _POSIX_VERSION, but you only get
95 POSIX.1 behavior with `cc -YPOSIX', which predefines POSIX itself! */
96# if defined (_POSIX_VERSION) && !defined (ultrix) && !defined (VMS)
97# define POSIX 1
98# endif
99#endif
100
101/* Some systems define _POSIX_VERSION but are not really POSIX.1. */
102#if (defined (butterfly) || defined (__arm) || (defined (__mips) && defined (_SYSTYPE_SVR3)) || (defined (sequent) && defined (i386)))
103# undef POSIX
104#endif
105
106#if !defined (POSIX) && defined (_AIX) && defined (_POSIX_SOURCE)
107# define POSIX 1
108#endif
109
110#ifndef RETSIGTYPE
111# define RETSIGTYPE void
112#endif
113
114#ifndef sigmask
115# define sigmask(sig) (1 << ((sig) - 1))
116#endif
117
118#ifndef HAVE_SA_RESTART
119# define SA_RESTART 0
120#endif
121
122#ifdef HAVE_LIMITS_H
123# include <limits.h>
124#endif
125#ifdef HAVE_SYS_PARAM_H
126# include <sys/param.h>
127#endif
128
129#ifndef PATH_MAX
130# ifndef POSIX
131# define PATH_MAX MAXPATHLEN
132# endif
133#endif
134#ifndef MAXPATHLEN
135# define MAXPATHLEN 1024
136#endif
137
138#ifdef PATH_MAX
139# define GET_PATH_MAX PATH_MAX
140# define PATH_VAR(var) char var[PATH_MAX]
141#else
142# define NEED_GET_PATH_MAX 1
143# define GET_PATH_MAX (get_path_max ())
144# define PATH_VAR(var) char *var = alloca (GET_PATH_MAX)
145unsigned int get_path_max (void);
146#endif
147
148#if defined (KMK) || defined (CONFIG_WITH_VALUE_LENGTH) \
149 || defined (CONFIG_WITH_ALLOC_CACHES) \
150 || defined (CONFIG_WITH_STRCACHE2)
151# ifdef _MSC_VER
152# define MY_INLINE _inline static
153# elif defined(__GNUC__)
154# define MY_INLINE static __inline__
155# else
156# define MY_INLINE static
157# endif
158
159# ifdef __GNUC__
160# define MY_PREDICT_TRUE(expr) __builtin_expect(!!(expr), 1)
161# define MY_PREDICT_FALSE(expr) __builtin_expect(!!(expr), 0)
162# else
163# define MY_PREDICT_TRUE(expr) (expr)
164# define MY_PREDICT_FALSE(expr) (expr)
165# endif
166#endif
167
168#if defined (KMK) || defined (CONFIG_WITH_VALUE_LENGTH) \
169 || defined (CONFIG_WITH_STRCACHE2)
170# ifdef _MSC_VER
171# define MY_DBGBREAK __debugbreak()
172# elif defined(__GNUC__)
173# if defined(__i386__) || defined(__x86_64__)
174# define MY_DBGBREAK __asm__ __volatile__ ("int3")
175# else
176# define MY_DBGBREAK assert(0)
177# endif
178# else
179# define MY_DBGBREAK assert(0)
180# endif
181# ifndef NDEBUG
182# define MY_ASSERT_MSG(expr, printfargs) \
183 do { if (!(expr)) { printf printfargs; MY_DBGBREAK; } } while (0)
184# else
185# define MY_ASSERT_MSG(expr, printfargs) do { } while (0)
186# endif
187#endif
188
189#ifdef KMK
190# include <ctype.h>
191# if 1 /* See if this speeds things up (Windows is doing this anyway, so,
192 we might as well try be consistent in speed + features). */
193# if 1
194# define MY_IS_BLANK(ch) ((ch) == ' ' || (ch) == '\t')
195# define MY_IS_BLANK_OR_EOS(ch) ((ch) == ' ' || (ch) == '\t' || (ch) == '\0')
196# else
197# define MY_IS_BLANK(ch) (((ch) == ' ') | ((ch) == '\t'))
198# define MY_IS_BLANK_OR_EOS(ch) (((ch) == ' ') | ((ch) == '\t') | ((ch) == '\0'))
199# endif
200# undef isblank
201# define isblank(ch) MY_IS_BLANK(ch)
202# else
203# define MY_IS_BLANK(ch) isblank ((unsigned char)(ch))
204# define MY_IS_BLANK_OR_EOS(ch) (isblank ((unsigned char)(ch)) || (ch) == '\0')
205# endif
206#endif
207
208#ifdef CONFIG_WITH_MAKE_STATS
209extern long make_stats_allocations;
210extern long make_stats_reallocations;
211extern unsigned long make_stats_allocated;
212extern unsigned long make_stats_ht_lookups;
213extern unsigned long make_stats_ht_collisions;
214
215# ifdef __APPLE__
216# include <malloc/malloc.h>
217# define SIZE_OF_HEAP_BLOCK(ptr) malloc_good_size(ptr)
218
219# elif defined(__linux__) /* glibc */
220# include <malloc.h>
221# define SIZE_OF_HEAP_BLOCK(ptr) malloc_usable_size(ptr)
222
223# elif defined(_MSC_VER) || defined(__OS2__)
224# define SIZE_OF_HEAP_BLOCK(ptr) _msize(ptr)
225
226# else
227# include <stdlib.h>
228# define SIZE_OF_HEAP_BLOCK(ptr) 0
229#endif
230
231# define MAKE_STATS_3(expr) do { expr; } while (0)
232# define MAKE_STATS_2(expr) do { expr; } while (0)
233# define MAKE_STATS(expr) do { expr; } while (0)
234#else
235# define MAKE_STATS_3(expr) do { } while (0)
236# define MAKE_STATS_2(expr) do { } while (0)
237# define MAKE_STATS(expr) do { } while (0)
238#endif
239
240
241#ifndef CHAR_BIT
242# define CHAR_BIT 8
243#endif
244
245/* Nonzero if the integer type T is signed. */
246#define INTEGER_TYPE_SIGNED(t) ((t) -1 < 0)
247
248/* The minimum and maximum values for the integer type T.
249 Use ~ (t) 0, not -1, for portability to 1's complement hosts. */
250#define INTEGER_TYPE_MINIMUM(t) \
251 (! INTEGER_TYPE_SIGNED (t) ? (t) 0 : ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1))
252#define INTEGER_TYPE_MAXIMUM(t) (~ (t) 0 - INTEGER_TYPE_MINIMUM (t))
253
254#ifndef CHAR_MAX
255# define CHAR_MAX INTEGER_TYPE_MAXIMUM (char)
256#endif
257
258#ifdef STAT_MACROS_BROKEN
259# ifdef S_ISREG
260# undef S_ISREG
261# endif
262# ifdef S_ISDIR
263# undef S_ISDIR
264# endif
265#endif /* STAT_MACROS_BROKEN. */
266
267#ifndef S_ISREG
268# define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
269#endif
270#ifndef S_ISDIR
271# define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
272#endif
273
274#ifdef VMS
275# include <types.h>
276# include <unixlib.h>
277# include <unixio.h>
278# include <perror.h>
279/* Needed to use alloca on VMS. */
280# include <builtins.h>
281#endif
282
283#ifndef __attribute__
284/* This feature is available in gcc versions 2.5 and later. */
285# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
286# define __attribute__(x)
287# endif
288/* The __-protected variants of `format' and `printf' attributes
289 are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
290# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
291# define __format__ format
292# define __printf__ printf
293# endif
294#endif
295#define UNUSED __attribute__ ((unused))
296
297#if defined (STDC_HEADERS) || defined (__GNU_LIBRARY__)
298# include <stdlib.h>
299# include <string.h>
300# define ANSI_STRING 1
301#else /* No standard headers. */
302# ifdef HAVE_STRING_H
303# include <string.h>
304# define ANSI_STRING 1
305# else
306# include <strings.h>
307# endif
308# ifdef HAVE_MEMORY_H
309# include <memory.h>
310# endif
311# ifdef HAVE_STDLIB_H
312# include <stdlib.h>
313# else
314void *malloc (int);
315void *realloc (void *, int);
316void free (void *);
317
318void abort (void) __attribute__ ((noreturn));
319void exit (int) __attribute__ ((noreturn));
320# endif /* HAVE_STDLIB_H. */
321
322#endif /* Standard headers. */
323
324/* These should be in stdlib.h. Make sure we have them. */
325#ifndef EXIT_SUCCESS
326# define EXIT_SUCCESS 0
327#endif
328#ifndef EXIT_FAILURE
329# define EXIT_FAILURE 1
330#endif
331
332#ifndef ANSI_STRING
333
334/* SCO Xenix has a buggy macro definition in <string.h>. */
335#undef strerror
336#if !defined(__DECC)
337char *strerror (int errnum);
338#endif
339
340#endif /* !ANSI_STRING. */
341#undef ANSI_STRING
342
343#if HAVE_INTTYPES_H
344# include <inttypes.h>
345#endif
346#define FILE_TIMESTAMP uintmax_t
347
348#if !defined(HAVE_STRSIGNAL)
349char *strsignal (int signum);
350#endif
351
352/* ISDIGIT offers the following features:
353 - Its arg may be any int or unsigned int; it need not be an unsigned char.
354 - It's guaranteed to evaluate its argument exactly once.
355 NOTE! Make relies on this behavior, don't change it!
356 - It's typically faster.
357 POSIX 1003.2-1992 section 2.5.2.1 page 50 lines 1556-1558 says that
358 only '0' through '9' are digits. Prefer ISDIGIT to isdigit() unless
359 it's important to use the locale's definition of `digit' even when the
360 host does not conform to POSIX. */
361#define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
362
363#ifndef iAPX286
364# define streq(a, b) \
365 ((a) == (b) || \
366 (*(a) == *(b) && (*(a) == '\0' || !strcmp ((a) + 1, (b) + 1))))
367# ifdef HAVE_CASE_INSENSITIVE_FS
368# define strieq(a, b) \
369 ((a) == (b) \
370 || (tolower((unsigned char)*(a)) == tolower((unsigned char)*(b)) \
371 && (*(a) == '\0' || !strcasecmp ((a) + 1, (b) + 1))))
372# else
373# define strieq(a, b) streq(a, b)
374# endif
375#else
376/* Buggy compiler can't handle this. */
377# define streq(a, b) (strcmp ((a), (b)) == 0)
378# define strieq(a, b) (strcmp ((a), (b)) == 0)
379#endif
380#define strneq(a, b, l) (strncmp ((a), (b), (l)) == 0)
381
382#if (defined(__GNUC__) || defined(ENUM_BITFIELDS)) && !defined(NO_ENUM_BITFIELDS)
383# define ENUM_BITFIELD(bits) :bits
384#else
385# define ENUM_BITFIELD(bits)
386#endif
387
388/* Handle gettext and locales. */
389
390#if HAVE_LOCALE_H
391# include <locale.h>
392#else
393# define setlocale(category, locale)
394#endif
395
396#include <gettext.h>
397
398#define _(msgid) gettext (msgid)
399#define N_(msgid) gettext_noop (msgid)
400#define S_(msg1,msg2,num) ngettext (msg1,msg2,num)
401
402/* Handle other OSs. */
403#ifndef PATH_SEPARATOR_CHAR
404# if defined(HAVE_DOS_PATHS)
405# define PATH_SEPARATOR_CHAR ';'
406# elif defined(VMS)
407# define PATH_SEPARATOR_CHAR ','
408# else
409# define PATH_SEPARATOR_CHAR ':'
410# endif
411#endif
412
413/* This is needed for getcwd() and chdir(), on some W32 systems. */
414#if defined(HAVE_DIRECT_H)
415# include <direct.h>
416#endif
417
418#ifdef WINDOWS32
419# include <fcntl.h>
420# include <malloc.h>
421# define pipe(_p) _pipe((_p), 512, O_BINARY)
422# define kill(_pid,_sig) w32_kill((_pid),(_sig))
423
424void sync_Path_environment (void);
425int w32_kill (int pid, int sig);
426char *end_of_token_w32 (const char *s, char stopchar);
427int find_and_set_default_shell (const char *token);
428
429/* indicates whether or not we have Bourne shell */
430extern int no_default_sh_exe;
431
432/* is default_shell unixy? */
433extern int unixy_shell;
434#endif /* WINDOWS32 */
435
436struct floc
437 {
438 const char *filenm;
439 unsigned long lineno;
440 };
441#define NILF ((struct floc *)0)
442
443#define STRING_SIZE_TUPLE(_s) (_s), (sizeof (_s)-1)
444
445
446
447/* We have to have stdarg.h or varargs.h AND v*printf or doprnt to use
448 variadic versions of these functions. */
449
450#if HAVE_STDARG_H || HAVE_VARARGS_H
451# if HAVE_VPRINTF || HAVE_DOPRNT
452# define USE_VARIADIC 1
453# endif
454#endif
455
456#if HAVE_ANSI_COMPILER && USE_VARIADIC && HAVE_STDARG_H
457void message (int prefix, const char *fmt, ...)
458 __attribute__ ((__format__ (__printf__, 2, 3)));
459void error (const struct floc *flocp, const char *fmt, ...)
460 __attribute__ ((__format__ (__printf__, 2, 3)));
461void fatal (const struct floc *flocp, const char *fmt, ...)
462 __attribute__ ((noreturn, __format__ (__printf__, 2, 3)));
463#else
464void message ();
465void error ();
466void fatal ();
467#endif
468
469void die (int) __attribute__ ((noreturn));
470void log_working_directory (int);
471void pfatal_with_name (const char *) __attribute__ ((noreturn));
472void perror_with_name (const char *, const char *);
473char *savestring (const char *, unsigned int);
474char *concat (const char *, const char *, const char *);
475void *xmalloc (unsigned int);
476void *xrealloc (void *, unsigned int);
477char *xstrdup (const char *);
478#ifdef CONFIG_WITH_PRINT_STATS_SWITCH
479void print_heap_stats (void);
480#endif
481char *find_next_token (const char **, unsigned int *);
482char *next_token (const char *);
483char *end_of_token (const char *);
484#ifndef CONFIG_WITH_VALUE_LENGTH
485void collapse_continuations (char *);
486#else
487char *collapse_continuations (char *, unsigned int);
488#endif
489#ifdef CONFIG_WITH_OPTIMIZATION_HACKS /* memchr is usually compiler intrinsic, thus faster. */
490# define lindex(s, limit, c) ((char *)memchr((s), (c), (limit) - (s)))
491#else
492char *lindex (const char *, const char *, int);
493#endif
494int alpha_compare (const void *, const void *);
495void print_spaces (unsigned int);
496char *find_percent (char *);
497const char *find_percent_cached (const char **);
498FILE *open_tmpfile (char **, const char *);
499
500#ifndef NO_ARCHIVES
501int ar_name (const char *);
502void ar_parse_name (const char *, char **, char **);
503int ar_touch (const char *);
504time_t ar_member_date (const char *);
505
506typedef long int (*ar_member_func_t) (int desc, const char *mem, int truncated,
507 long int hdrpos, long int datapos,
508 long int size, long int date, int uid,
509 int gid, int mode, const void *arg);
510
511long int ar_scan (const char *archive, ar_member_func_t function, const void *arg);
512int ar_name_equal (const char *name, const char *mem, int truncated);
513#ifndef VMS
514int ar_member_touch (const char *arname, const char *memname);
515#endif
516#endif
517
518int dir_file_exists_p (const char *, const char *);
519int file_exists_p (const char *);
520int file_impossible_p (const char *);
521void file_impossible (const char *);
522const char *dir_name (const char *);
523void hash_init_directories (void);
524
525void define_default_variables (void);
526void set_default_suffixes (void);
527void install_default_suffix_rules (void);
528void install_default_implicit_rules (void);
529
530void build_vpath_lists (void);
531void construct_vpath_list (char *pattern, char *dirpath);
532const char *vpath_search (const char *file, FILE_TIMESTAMP *mtime_ptr);
533int gpath_search (const char *file, unsigned int len);
534
535void construct_include_path (const char **arg_dirs);
536
537void user_access (void);
538void make_access (void);
539void child_access (void);
540
541void close_stdout (void);
542
543char *strip_whitespace (const char **begpp, const char **endpp);
544
545#ifdef CONFIG_WITH_ALLOC_CACHES
546/* alloccache (misc.c) */
547
548struct alloccache_free_ent
549{
550 struct alloccache_free_ent *next;
551};
552
553struct alloccache
554{
555 char *free_start;
556 char *free_end;
557 struct alloccache_free_ent *free_head;
558 unsigned int size;
559 unsigned int total_count;
560 unsigned long alloc_count;
561 unsigned long free_count;
562 const char *name;
563 struct alloccache *next;
564 void *grow_arg;
565 void *(*grow_alloc)(void *grow_arg, unsigned int size);
566};
567
568void alloccache_init (struct alloccache *cache, unsigned int size, const char *name,
569 void *(*grow_alloc)(void *grow_arg, unsigned int size), void *grow_arg);
570void alloccache_term (struct alloccache *cache,
571 void (*term_free)(void *term_arg, void *ptr, unsigned int size), void *term_arg);
572void alloccache_join (struct alloccache *cache, struct alloccache *eat);
573void alloccache_print (struct alloccache *cache);
574void alloccache_print_all (void);
575struct alloccache_free_ent *alloccache_alloc_grow (struct alloccache *cache);
576
577/* Allocate an item. */
578MY_INLINE void *
579alloccache_alloc (struct alloccache *cache)
580{
581 struct alloccache_free_ent *f = cache->free_head;
582 if (f)
583 cache->free_head = f->next;
584 else if (cache->free_start != cache->free_end)
585 {
586 f = (struct alloccache_free_ent *)cache->free_start;
587 cache->free_start += cache->size;
588 }
589 else
590 f = alloccache_alloc_grow (cache);
591 MAKE_STATS(cache->alloc_count++;);
592 return f;
593}
594
595/* Allocate a cleared item. */
596MY_INLINE void *
597alloccache_calloc (struct alloccache *cache)
598{
599 void *item = alloccache_alloc (cache);
600 memset (item, '\0', cache->size);
601 return item;
602}
603
604/* Free an item. */
605MY_INLINE void
606alloccache_free (struct alloccache *cache, void *item)
607{
608 struct alloccache_free_ent *f = (struct alloccache_free_ent *)item;
609#if 0 /*ndef NDEBUG*/
610 struct alloccache_free_ent *c;
611 unsigned int i = 0;
612 for (c = cache->free_head; c != NULL; c = c->next, i++)
613 MY_ASSERT_MSG (c != f && i < 0x10000000,
614 ("i=%u total_count=%u\n", i, cache->total_count));
615#endif
616#ifdef __GNUC__
617/* GCC 3.2.3 has been observed having aliasing issues, so, setup a
618 barrier for it here. */
619# if (__GNUC__ == 3 && __GNUC_PATCHLEVEL__ <= 3) || __GNUC__ < 3
620 __asm__ __volatile__ ("" ::: "memory");
621# endif
622#endif
623
624 f->next = cache->free_head;
625 cache->free_head = f;
626 MAKE_STATS(cache->free_count++;);
627}
628
629/* the alloc caches */
630extern struct alloccache dep_cache;
631extern struct alloccache file_cache;
632extern struct alloccache commands_cache;
633extern struct alloccache nameseq_cache;
634extern struct alloccache variable_cache;
635extern struct alloccache variable_set_cache;
636extern struct alloccache variable_set_list_cache;
637
638#endif /* CONFIG_WITH_ALLOC_CACHES */
639
640
641/* String caching */
642void strcache_init (void);
643void strcache_print_stats (const char *prefix);
644#ifndef CONFIG_WITH_STRCACHE2
645int strcache_iscached (const char *str);
646const char *strcache_add (const char *str);
647const char *strcache_add_len (const char *str, int len);
648int strcache_setbufsize (int size);
649#else /* CONFIG_WITH_STRCACHE2 */
650
651# include "strcache2.h"
652extern struct strcache2 file_strcache;
653extern const char *suffixes_strcached;
654
655# define strcache_iscached(str) strcache2_is_cached(&file_strcache, str)
656# define strcache_add(str) strcache2_add_file(&file_strcache, str, strlen (str))
657# define strcache_add_len(str, len) strcache2_add_file(&file_strcache, str, len)
658# define strcache_get_len(str) strcache2_get_len(&file_strcache, str) /* FIXME: replace this and related checks ... */
659
660#endif /* CONFIG_WITH_STRCACHE2 */
661
662#ifdef HAVE_VFORK_H
663# include <vfork.h>
664#endif
665
666/* We omit these declarations on non-POSIX systems which define _POSIX_VERSION,
667 because such systems often declare them in header files anyway. */
668
669#if !defined (__GNU_LIBRARY__) && !defined (POSIX) && !defined (_POSIX_VERSION) && !defined(WINDOWS32)
670
671long int atol ();
672# ifndef VMS
673long int lseek ();
674# endif
675
676#endif /* Not GNU C library or POSIX. */
677
678#ifdef HAVE_GETCWD
679# if !defined(VMS) && !defined(__DECC) && !defined(_MSC_VER) /* bird: MSC */
680char *getcwd ();
681# endif
682#else
683char *getwd ();
684# define getcwd(buf, len) getwd (buf)
685#endif
686
687#if !HAVE_STRCASECMP
688# if HAVE_STRICMP
689# define strcasecmp stricmp
690# elif HAVE_STRCMPI
691# define strcasecmp strcmpi
692# else
693/* Create our own, in misc.c */
694int strcasecmp (const char *s1, const char *s2);
695# endif
696#endif
697
698extern const struct floc *reading_file;
699extern const struct floc **expanding_var;
700
701#if !defined(_MSC_VER) /* bird */
702extern char **environ;
703#endif
704
705extern int just_print_flag, silent_flag, ignore_errors_flag, keep_going_flag;
706extern int print_data_base_flag, question_flag, touch_flag, always_make_flag;
707extern int env_overrides, no_builtin_rules_flag, no_builtin_variables_flag;
708extern int print_version_flag, print_directory_flag, check_symlink_flag;
709extern int warn_undefined_variables_flag, posix_pedantic, not_parallel;
710extern int second_expansion, clock_skew_detected, rebuilding_makefiles;
711#ifdef CONFIG_WITH_2ND_TARGET_EXPANSION
712extern int second_target_expansion;
713#endif
714#ifdef CONFIG_PRETTY_COMMAND_PRINTING
715extern int pretty_command_printing;
716#endif
717#if defined (CONFIG_WITH_MAKE_STATS) || defined (CONFIG_WITH_MINIMAL_STATS)
718extern int make_expensive_statistics;
719#endif
720
721
722/* can we run commands via 'sh -c xxx' or must we use batch files? */
723extern int batch_mode_shell;
724
725/* Resetting the command script introduction prefix character. */
726#define RECIPEPREFIX_NAME ".RECIPEPREFIX"
727#define RECIPEPREFIX_DEFAULT '\t'
728extern char cmd_prefix;
729
730extern unsigned int job_slots;
731extern int job_fds[2];
732extern int job_rfd;
733#ifndef NO_FLOAT
734extern double max_load_average;
735#else
736extern int max_load_average;
737#endif
738
739extern char *program;
740extern char *starting_directory;
741extern unsigned int makelevel;
742extern char *version_string, *remote_description, *make_host;
743
744extern unsigned int commands_started;
745
746extern int handling_fatal_signal;
747
748
749#ifndef MIN
750#define MIN(_a,_b) ((_a)<(_b)?(_a):(_b))
751#endif
752#ifndef MAX
753#define MAX(_a,_b) ((_a)>(_b)?(_a):(_b))
754#endif
755
756#ifdef VMS
757# define MAKE_SUCCESS 1
758# define MAKE_TROUBLE 2
759# define MAKE_FAILURE 3
760#else
761# define MAKE_SUCCESS 0
762# define MAKE_TROUBLE 1
763# define MAKE_FAILURE 2
764#endif
765
766/* Set up heap debugging library dmalloc. */
767
768#ifdef HAVE_DMALLOC_H
769#include <dmalloc.h>
770#endif
771
772#ifndef initialize_main
773# ifdef __EMX__
774# define initialize_main(pargc, pargv) \
775 { _wildcard(pargc, pargv); _response(pargc, pargv); }
776# else
777# define initialize_main(pargc, pargv)
778# endif
779#endif
780
781#ifdef __EMX__
782# if !defined chdir
783# define chdir _chdir2
784# endif
785# if !defined getcwd
786# define getcwd _getcwd2
787# endif
788
789/* NO_CHDIR2 causes make not to use _chdir2() and _getcwd2() instead of
790 chdir() and getcwd(). This avoids some error messages for the
791 make testsuite but restricts the drive letter support. */
792# ifdef NO_CHDIR2
793# warning NO_CHDIR2: usage of drive letters restricted
794# undef chdir
795# undef getcwd
796# endif
797#endif
798
799#ifndef initialize_main
800# define initialize_main(pargc, pargv)
801#endif
802
803
804/* Some systems (like Solaris, PTX, etc.) do not support the SA_RESTART flag
805 properly according to POSIX. So, we try to wrap common system calls with
806 checks for EINTR. Note that there are still plenty of system calls that
807 can fail with EINTR but this, reportedly, gets the vast majority of
808 failure cases. If you still experience failures you'll need to either get
809 a system where SA_RESTART works, or you need to avoid -j. */
810
811#define EINTRLOOP(_v,_c) while (((_v)=_c)==-1 && errno==EINTR)
812
813/* While system calls that return integers are pretty consistent about
814 returning -1 on failure and setting errno in that case, functions that
815 return pointers are not always so well behaved. Sometimes they return
816 NULL for expected behavior: one good example is readdir() which returns
817 NULL at the end of the directory--and _doesn't_ reset errno. So, we have
818 to do it ourselves here. */
819
820#define ENULLLOOP(_v,_c) do { errno = 0; (_v) = _c; } \
821 while((_v)==0 && errno==EINTR)
822
823
824#if defined(__EMX__) && defined(CONFIG_WITH_OPTIMIZATION_HACKS) /* bird: saves 40-100ms on libc. */
825static inline void *__my_rawmemchr (const void *__s, int __c);
826#undef strchr
827#define strchr(s, c) \
828 (__extension__ (__builtin_constant_p (c) \
829 ? ((c) == '\0' \
830 ? (char *) __my_rawmemchr ((s), (c)) \
831 : __my_strchr_c ((s), ((c) & 0xff) << 8)) \
832 : __my_strchr_g ((s), (c))))
833static inline char *__my_strchr_c (const char *__s, int __c)
834{
835 register unsigned long int __d0;
836 register char *__res;
837 __asm__ __volatile__
838 ("1:\n\t"
839 "movb (%0),%%al\n\t"
840 "cmpb %%ah,%%al\n\t"
841 "je 2f\n\t"
842 "leal 1(%0),%0\n\t"
843 "testb %%al,%%al\n\t"
844 "jne 1b\n\t"
845 "xorl %0,%0\n"
846 "2:"
847 : "=r" (__res), "=&a" (__d0)
848 : "0" (__s), "1" (__c),
849 "m" ( *(struct { char __x[0xfffffff]; } *)__s)
850 : "cc");
851 return __res;
852}
853
854static inline char *__my_strchr_g (__const char *__s, int __c)
855{
856 register unsigned long int __d0;
857 register char *__res;
858 __asm__ __volatile__
859 ("movb %%al,%%ah\n"
860 "1:\n\t"
861 "movb (%0),%%al\n\t"
862 "cmpb %%ah,%%al\n\t"
863 "je 2f\n\t"
864 "leal 1(%0),%0\n\t"
865 "testb %%al,%%al\n\t"
866 "jne 1b\n\t"
867 "xorl %0,%0\n"
868 "2:"
869 : "=r" (__res), "=&a" (__d0)
870 : "0" (__s), "1" (__c),
871 "m" ( *(struct { char __x[0xfffffff]; } *)__s)
872 : "cc");
873 return __res;
874}
875
876static inline void *__my_rawmemchr (const void *__s, int __c)
877{
878 register unsigned long int __d0;
879 register unsigned char *__res;
880 __asm__ __volatile__
881 ("cld\n\t"
882 "repne; scasb\n\t"
883 : "=D" (__res), "=&c" (__d0)
884 : "a" (__c), "0" (__s), "1" (0xffffffff),
885 "m" ( *(struct { char __x[0xfffffff]; } *)__s)
886 : "cc");
887 return __res - 1;
888}
889
890#undef memchr
891#define memchr(a,b,c) __my_memchr((a),(b),(c))
892static inline void *__my_memchr (__const void *__s, int __c, size_t __n)
893{
894 register unsigned long int __d0;
895 register unsigned char *__res;
896 if (__n == 0)
897 return NULL;
898 __asm__ __volatile__
899 ("repne; scasb\n\t"
900 "je 1f\n\t"
901 "movl $1,%0\n"
902 "1:"
903 : "=D" (__res), "=&c" (__d0)
904 : "a" (__c), "0" (__s), "1" (__n),
905 "m" ( *(struct { __extension__ char __x[__n]; } *)__s)
906 : "cc");
907 return __res - 1;
908}
909
910#endif /* __EMX__ (bird) */
911
912#ifdef CONFIG_WITH_IF_CONDITIONALS
913extern int expr_eval_if_conditionals(char *line, const struct floc *flocp);
914extern char *expr_eval_to_string(char *o, char *expr);
915#endif
916
917#ifdef KMK
918extern char *abspath(const char *name, char *apath);
919extern char *func_breakpoint(char *o, char **argv, const char *funcname);
920#endif
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette