3 autogen definitions fixincl
;
5 /* Define all the fixes we know about for repairing damaged headers.
6 Please see the README before adding or changing entries in this file.
8 This is the sort command
:
10 blocksort output
=inclhack.sorted \
12 trailer
='^/\*EOF\*[/]' \
14 key
=$
'hackname[ \t]*=[ \t]*(.*);'
16 Set up a debug test so we can make the templates emit special
17 code while debugging these fixes
: */
23 /* On AIX when _LARGE_FILES is defined stdio.h defines fopen to
24 * fopen64 etc. and this causes problems when building with g
++
25 * because cstdio udefs everything from stdio.h
, leaving us with
26 * ::fopen has not been declared errors. This fixes stdio.h to
27 * undef those defines and use __asm__ to alias the symbols if
28 * building with g
++ and
-D_LARGE_FILES
31 hackname
= AAB_aix_stdio
;
33 select
= "define fopen fopen64";
35 test
-text
= ''; /* no way to test
*/
41 c_fix_arg
= <<- _EOArg_
43 #if defined __GNUG__
&& defined _LARGE_FILES
&& defined __cplusplus
44 #define __need__aix_stdio_h_fix
45 #ifdef __need__aix_stdio_h_fix
52 /* Alias the symbols using asm
*/
54 extern int
fgetpos(FILE
*, fpos64_t *)
__asm__("fgetpos64");
55 extern FILE
*fopen(const char
*, const char *)
__asm__("fopen64");
56 extern FILE
*freopen(const char
*, const char
*, FILE *)
__asm__("freopen64");
57 extern int
fseeko(FILE
*, off64_t
, int
) __asm__("fseeko64");
58 extern int
fsetpos(FILE
*, const fpos64_t *)
__asm__("fsetpos64");
59 extern off64_t
ftello(FILE *)
__asm__("ftello64");
67 /* On AIX when _LARGE_FILES is defined fcntl.h defines open to
68 * open64 and creat to creat64. This fixes fcntl.h to
69 * undef those defines and use __asm__ to alias the symbols if
70 * building with g
++ and
-D_LARGE_FILES
73 hackname
= AAB_aix_fcntl
;
75 select
= "define open[ \t]open64";
77 test
-text
= ''; /* no way to test
*/
83 c_fix_arg
= <<- _EOArg_
85 #if defined __GNUG__
&& defined _LARGE_FILES
&& defined __cplusplus
86 #define __need__aix_fcntl_h_fix
87 #ifdef __need__aix_fcntl_h_fix
91 /* Alias the symbols using asm
*/
93 extern int
open(const char
*, int
, ...
) __asm__("open64");
94 extern int
creat(const char
*, mode_t
) __asm__("creat64");
95 #
if (_XOPEN_SOURCE
>= 700)
96 extern int
openat(int
, const char
*, int
, ...
) __asm__("open64at");
106 * On Mac OS
10.3.9, the
'long double' functions are available in
107 * libSystem
, but are not prototyped in math.h.
110 hackname
= AAB_darwin7_9_long_double_funcs
;
111 mach
= "*-*-darwin7.9*";
112 files
= architecture
/ppc
/math.h
;
114 replace
= <<- _EndOfHeader_
115 /* This file prototypes the long double functions available on Mac OS
119 # define __APPLE_CC__
1345
120 # include_next
<architecture
/ppc
/math.h
>
122 # define __APPLE_CC__
1
123 # ifndef __LIBMLDBL_COMPAT
124 # ifdef __LONG_DOUBLE_128__
125 # define
__LIBMLDBL_COMPAT(sym
) __asm("_" #sym
"$LDBL128")
127 # define
__LIBMLDBL_COMPAT(sym
)
128 # endif
/* __LONG_DOUBLE_128__
*/
129 # endif
/* __LIBMLDBL_COMPAT
*/
133 extern long double
acosl( long double
) __LIBMLDBL_COMPAT(acosl
);
134 extern long double
asinl( long double
) __LIBMLDBL_COMPAT(asinl
);
135 extern long double
atanl( long double
) __LIBMLDBL_COMPAT(atanl
);
136 extern long double
atan2l( long double
, long double
) __LIBMLDBL_COMPAT(atan2l
);
137 extern long double
cosl( long double
) __LIBMLDBL_COMPAT(cosl
);
138 extern long double
sinl( long double
) __LIBMLDBL_COMPAT(sinl
);
139 extern long double
tanl( long double
) __LIBMLDBL_COMPAT(tanl
);
140 extern long double
acoshl( long double
) __LIBMLDBL_COMPAT(acoshl
);
141 extern long double
asinhl( long double
) __LIBMLDBL_COMPAT(asinhl
);
142 extern long double
atanhl( long double
) __LIBMLDBL_COMPAT(atanhl
);
143 extern long double
coshl( long double
) __LIBMLDBL_COMPAT(coshl
);
144 extern long double
sinhl( long double
) __LIBMLDBL_COMPAT(sinhl
);
145 extern long double
tanhl( long double
) __LIBMLDBL_COMPAT(tanhl
);
146 extern long double
expl( long double
) __LIBMLDBL_COMPAT(expl
);
147 extern long double
exp2l( long double
) __LIBMLDBL_COMPAT(exp2l
);
148 extern long double
expm1l( long double
) __LIBMLDBL_COMPAT(expm1l
);
149 extern long double
logl( long double
) __LIBMLDBL_COMPAT(logl
);
150 extern long double
log10l( long double
) __LIBMLDBL_COMPAT(log10l
);
151 extern long double
log2l( long double
) __LIBMLDBL_COMPAT(log2l
);
152 extern long double
log1pl( long double
) __LIBMLDBL_COMPAT(log1pl
);
153 extern long double
logbl( long double
) __LIBMLDBL_COMPAT(logbl
);
154 extern long double
modfl( long double
, long double
* ) __LIBMLDBL_COMPAT(modfl
);
155 extern long double
ldexpl( long double
, int
) __LIBMLDBL_COMPAT(ldexpl
);
156 extern long double
frexpl( long double
, int
* ) __LIBMLDBL_COMPAT(frexpl
);
157 extern int
ilogbl( long double
) __LIBMLDBL_COMPAT(ilogbl
);
158 extern long double
scalbnl( long double
, int
) __LIBMLDBL_COMPAT(scalbnl
);
159 extern long double
scalblnl( long double
, long int
) __LIBMLDBL_COMPAT(scalblnl
);
160 extern long double
fabsl( long double
) __LIBMLDBL_COMPAT(fabsl
);
161 extern long double
cbrtl( long double
) __LIBMLDBL_COMPAT(cbrtl
);
162 extern long double
hypotl( long double
, long double
) __LIBMLDBL_COMPAT(hypotl
);
163 extern long double
powl( long double
, long double
) __LIBMLDBL_COMPAT(powl
);
164 extern long double
sqrtl( long double
) __LIBMLDBL_COMPAT(sqrtl
);
165 extern long double
erfl( long double
) __LIBMLDBL_COMPAT(erfl
);
166 extern long double
erfcl( long double
) __LIBMLDBL_COMPAT(erfcl
);
167 extern long double
lgammal( long double
) __LIBMLDBL_COMPAT(lgammal
);
168 extern long double
tgammal( long double
) __LIBMLDBL_COMPAT(tgammal
);
169 extern long double
ceill( long double
) __LIBMLDBL_COMPAT(ceill
);
170 extern long double
floorl( long double
) __LIBMLDBL_COMPAT(floorl
);
171 extern long double
nearbyintl( long double
) __LIBMLDBL_COMPAT(nearbyintl
);
172 extern long double
rintl( long double
) __LIBMLDBL_COMPAT(rintl
);
173 extern long int
lrintl( long double
) __LIBMLDBL_COMPAT(lrintl
);
174 extern long long int
llrintl( long double
) __LIBMLDBL_COMPAT(llrintl
);
175 extern long double
roundl( long double
) __LIBMLDBL_COMPAT(roundl
);
176 extern long int
lroundl( long double
) __LIBMLDBL_COMPAT(lroundl
);
177 extern long long int
llroundl( long double
) __LIBMLDBL_COMPAT(llroundl
);
178 extern long double
truncl( long double
) __LIBMLDBL_COMPAT(truncl
);
179 extern long double
fmodl( long double
, long double
) __LIBMLDBL_COMPAT(fmodl
);
180 extern long double
remainderl( long double
, long double
) __LIBMLDBL_COMPAT(remainderl
);
181 extern long double
remquol( long double
, long double
, int
* ) __LIBMLDBL_COMPAT(remquol
);
182 extern long double
copysignl( long double
, long double
) __LIBMLDBL_COMPAT(copysignl
);
183 extern long double
nanl( const char
* ) __LIBMLDBL_COMPAT(nanl
);
184 extern long double
nextafterl( long double
, long double
) __LIBMLDBL_COMPAT(nextafterl
);
185 extern long double
nexttowardl( long double
, long double
) __LIBMLDBL_COMPAT(nexttowardl
);
186 extern long double
fdiml( long double
, long double
) __LIBMLDBL_COMPAT(fdiml
);
187 extern long double
fmaxl( long double
, long double
) __LIBMLDBL_COMPAT(fmaxl
);
188 extern long double
fminl( long double
, long double
) __LIBMLDBL_COMPAT(fminl
);
189 extern long double
fmal( long double
, long double
, long double
) __LIBMLDBL_COMPAT(fmal
);
193 #endif
/* __MATH__
*/
198 * SDKs for
10.13 and
10.14 omit the definitions for API_AVAILABLE where
199 * __attribute__((availability
)) is not supported.
202 hackname
= darwin_api_availability
;
203 mach
= "*-*-darwin*";
204 files
= os
/availability.h
;
205 bypass
= "__IPHONE_OS_VERSION_MIN_REQUIRED";
207 " *#define __API_AVAILABLE.*\n"
208 " *#define __API_DEPRECATED.*\n"
209 " *#define __API_DEPRECATED_WITH_REPLACEMENT.*\n"
210 " *#define __API_UNAVAILABLE.*\n";
213 " #define API_AVAILABLE(...)\n"
214 " #define API_DEPRECATED(...)\n"
215 " #define API_DEPRECATED_WITH_REPLACEMENT(...)\n"
216 " #define API_UNAVAILABLE(...)\n";
218 "#define __API_AVAILABLE(...)\n"
219 "#define __API_DEPRECATED(...)\n"
220 "#define __API_DEPRECATED_WITH_REPLACEMENT(...)\n"
221 "#define __API_UNAVAILABLE(...)\n";
225 * This fixes __FD_ZERO bug for linux
2.x.
y (x
<= 2 && y
<= some n
)
228 hackname
= AAB_fd_zero_asm_posix_types_h
;
229 files
= asm
/posix_types.h
;
230 mach
= 'i[34567]86-*-linux*';
233 bypass
= 'posix_types_64';
236 * Define _POSIX_TYPES_H_WRAPPER at the end of the wrapper
, not
237 * the start
, so that if #include_next gets another instance of
238 * the wrapper
, this will follow the #include_next chain until
239 * we arrive at the real
<asm
/posix_types.h
>.
241 replace
= <<- _EndOfHeader_
242 /* This file fixes a bug in the __FD_ZERO macro
243 for older versions of the Linux kernel.
*/
244 #ifndef _POSIX_TYPES_H_WRAPPER
245 #include
<features.h
>
246 #include_next
<asm
/posix_types.h
>
248 #if
defined(__FD_ZERO
) && !defined(__GLIBC__
)
250 #define
__FD_ZERO(fdsetp
) \
253 __asm__
__volatile__("cld ; rep ; stosl" \
254 : "=&c" (__d0
), "=&D" (__d1
) \
255 : "a" (0), "0" (__FDSET_LONGS
), \
256 "1" ((__kernel_fd_set *)
(fdsetp
)) :"memory"); \
260 #define _POSIX_TYPES_H_WRAPPER
261 #endif
/* _POSIX_TYPES_H_WRAPPER
*/
266 * This fixes __FD_ZERO bug for glibc
-1.x
269 hackname
= AAB_fd_zero_gnu_types_h
;
271 mach
= 'i[34567]86-*-linux*';
274 * Define _TYPES_H_WRAPPER at the end of the wrapper
, not
275 * the start
, so that if #include_next gets another instance of
276 * the wrapper
, this will follow the #include_next chain until
277 * we arrive at the real
<gnu
/types.h
>.
279 replace
= <<- _EndOfHeader_
280 /* This file fixes a bug in the __FD_ZERO macro present in glibc
1.x.
*/
281 #ifndef _TYPES_H_WRAPPER
282 #include
<features.h
>
283 #include_next
<gnu
/types.h
>
285 #if
defined(__FD_ZERO
) && !defined(__GLIBC__
)
287 # define
__FD_ZERO(fdsetp
) \
290 __asm__
__volatile__("cld ; rep ; stosl" \
291 : "=&c" (__d0
), "=&D" (__d1
) \
292 : "a" (0), "0" (__FDSET_LONGS
), \
293 "1" ((__fd_set *)
(fdsetp
)) :"memory"); \
297 #define _TYPES_H_WRAPPER
298 #endif
/* _TYPES_H_WRAPPER
*/
303 * This fixes __FD_ZERO bug for glibc
-2.0.x
306 hackname
= AAB_fd_zero_selectbits_h
;
307 files
= selectbits.h
;
308 mach
= 'i[34567]86-*-linux*';
311 * Define _SELECTBITS_H_WRAPPER at the end of the wrapper
, not
312 * the start
, so that if #include_next gets another instance of
313 * the wrapper
, this will follow the #include_next chain until
314 * we arrive at the real
<selectbits.h
>.
316 replace
= <<- _EndOfHeader_
317 /* This file fixes a bug in the __FD_ZERO macro present in glibc
2.0.x.
*/
318 #ifndef _SELECTBITS_H_WRAPPER
319 #include
<features.h
>
320 #include_next
<selectbits.h
>
322 #if
defined(__FD_ZERO
) && defined(__GLIBC__
) \\
323 && defined(__GLIBC_MINOR__
) && __GLIBC__
== 2 \\
324 && __GLIBC_MINOR__
== 0
326 #define
__FD_ZERO(fdsetp
) \\
329 __asm__
__volatile__ ("cld; rep; stosl" \\
330 : "=&c" (__d0
), "=&D" (__d1
) \\
331 : "a" (0), "0" (sizeof (__fd_set
) \\
332 / sizeof (__fd_mask
)), \\
333 "1" ((__fd_mask *)
(fdsetp
)) \\
338 #define _SELECTBITS_H_WRAPPER
339 #endif
/* _SELECTBITS_H_WRAPPER
*/
344 * Solaris
<sys
/varargs.h
> is a
DDK (aka kernel
-land
) header providing
345 * the same interface as
<stdarg.h
>. No idea why they couldn
't have just
346 * used the standard header.
349 hackname = AAB_solaris_sys_varargs_h;
350 files = "sys/varargs.h";
351 mach = '*-*-solaris
*';
352 replace = <<- _EndOfHeader_
362 * Fix non-ANSI memcpy declaration that conflicts with gcc's builtin
363 * declaration on Sun OS
4.x. We must only fix this on Sun OS
4.x
, because
364 * many other systems have similar text but correct versions of the file.
365 * To ensure only Sun
's is fixed, we grep for a likely unique string.
366 * Fix also on sysV68 R3V7.1 (head/memory.h\t50.1\t )
369 hackname = AAB_sun_memcpy;
371 select = "/\\*\t@\\(#\\)"
372 "(head/memory.h\t50.1\t "
373 "|memory\\.h 1\\.[2-4] 8./../.. SMI; from S5R2 1\\.2\t)\\*/";
375 replace = <<- _EndOfHeader_
376 /* This file was generated by fixincludes */
381 extern void *memccpy();
382 extern void *memchr();
383 extern void *memcpy();
384 extern void *memset();
386 extern char *memccpy();
387 extern char *memchr();
388 extern char *memcpy();
389 extern char *memset();
390 #endif /* __STDC__ */
394 #endif /* __memory_h__ */
399 * Fix assert.h on VxWorks:
402 hackname = AAB_vxworks_assert;
404 mach = "*-*-vxworks*";
406 replace = <<- _EndOfHeader_
418 #if defined(__STDC__) || defined(__cplusplus)
419 extern void __assert (const char*);
421 extern void __assert ();
425 #define assert(ign) ((void)0)
428 #define ASSERT_STRINGIFY(str) ASSERT_STRINGIFY_HELPER(str)
429 #define ASSERT_STRINGIFY_HELPER(str) #str
431 #define assert(test) ((void) \
432 ((test) ? ((void)0) : \
433 __assert("Assertion failed: " #test ", file " \
434 __FILE__ ", line " ASSERT_STRINGIFY(__LINE__) "\n")))
445 * Add needed include to regs.h (NOT the gcc header) on VxWorks
449 hackname = AAB_vxworks_regs_vxtypes;
451 mach = "*-*-vxworks*";
453 replace = <<- _EndOfHeader_
456 /* regs.h depends on CPU_FAMILY being properly defined, which
457 is done by vxCpu.h. */
458 #include <types/vxCpu.h>
459 /* regs.h includes a CPU_FAMILY-specific header that requires
460 vxTypesOld.h to already have been included. Those headers
461 contain proper _ASMLANGUAGE guards around their typedefs,
462 but vxTypesOld.h itself does not. So we avoid including
463 vxTypesOld.h from assembly. */
465 #include <types/vxTypesOld.h>
467 #include_next <arch/../regs.h>
473 * This hack makes makes unistd.h more POSIX-compliant on VxWorks
476 hackname = AAB_vxworks_unistd;
478 mach = "*-*-vxworks*";
480 replace = <<- _EndOfHeader_
483 #include_next <unistd.h>
486 #define STDIN_FILENO 0
488 #ifndef STDOUT_FILENO
489 #define STDOUT_FILENO 1
491 #ifndef STDERR_FILENO
492 #define STDERR_FILENO 2
494 #endif /* _UNISTD_H */
499 * assert.h on AIX 7 redefines static_assert as _Static_assert without
503 hackname = aix_assert;
506 select = "#define[ \t]static_assert[ \t]_Static_assert";
508 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
509 test_text = "#define static_assert _Static_assert";
513 * complex.h on AIX 5 and AIX 6 define _Complex_I and I in terms of __I,
514 * which only is provided by AIX xlc C99.
517 hackname = aix_complex;
520 select = "#define[ \t]_Complex_I[ \t]__I";
522 c_fix_arg = "#define _Complex_I (__extension__ 1.0iF)";
523 test_text = "#define _Complex_I __I\n";
527 * On AIX some headers are not properly guarded by 'extern
"C"'.
530 hackname = aix_externc;
536 files = sys/localedef.h;
538 bypass = "extern \"C\"";
540 c_fix_arg = "#ifdef __cplusplus\n"
543 c_fix_arg = "#ifdef __cplusplus\n"
546 test_text = "extern int __n_pthreads;\n";
550 * On AIX sys/socket.h assumes C++.
553 hackname = aix_externcpp1;
555 files = "sys/socket.h";
556 select = "#ifndef _KERNEL\n"
557 "#ifdef __cplusplus\n"
558 "extern \"C\" int naccept\\(int, struct sockaddr \\*, socklen_t \\*\\);";
560 c_fix_arg = "#ifndef _KERNEL\n"
561 "#ifdef __cplusplus\n"
563 "extern \"C\" int naccept(int, struct sockaddr *, socklen_t *);";
564 test_text = "#ifndef _KERNEL\n"
565 "#ifdef __cplusplus\n"
566 "extern \"C\" int naccept(int, struct sockaddr *, socklen_t *);";
570 hackname = aix_externcpp2;
572 files = "sys/socket.h";
573 select = "#endif /\\* COMPAT_43 \\*/\n"
574 "#else /\\* __cplusplus \\*/";
576 c_fix_arg = "#endif /* COMPAT_43 */\n"
577 "} /* extern \"C++\" */\n"
578 "#else /* __cplusplus */";
579 test_text = "#endif /* COMPAT_43 */\n"
580 "#else /* __cplusplus */";
584 * inttypes.h STDC_FORMAT_MACROS
587 hackname = aix_inttypes;
589 files = "sys/inttypes.h";
590 select = "#if !defined\\(__cplusplus\\) \\|\\| defined\\(__STDC_FORMAT_MACROS\\)";
593 test_text = "#if !defined(__cplusplus) || defined(__STDC_FORMAT_MACROS)";
597 * malloc.h on AIX6 uses XLC++ specific builtin syntax
600 hackname = aix_malloc;
603 select = "#ifdef __cplusplus\n"
605 "[ \t]extern \"builtin\" char \\*__alloca \\(size_t\\);";
607 c_fix_arg = "#if (defined(__cplusplus) && defined(__IBMCPP__))\n"
609 "\textern \"builtin\" char *__alloca (size_t);";
610 test_text = "#ifdef __cplusplus\n"
612 "\textern \"builtin\" char *__alloca (size_t);";
616 * net/if_arp.h defines a variable fc_softc instead of adding a
617 * typedef for the struct on AIX 5.2, 5.3, 6.1 and 7.1
620 hackname = aix_net_if_arp;
622 files = "net/if_arp.h";
623 select = "^struct fc_softc \\{";
625 c_fix_arg = "typedef struct _fc_softc {";
626 test_text = "struct fc_softc {\n int a;\n};";
630 * Fix AIX definition of NULL for G++.
635 files = curses.h, dbm.h, locale.h, stdio.h, stdlib.h, string.h,
636 time.h, unistd.h, wchar.h, sys/dir.h, sys/param.h, sys/types.h;
638 select = "#define[ \t]+NULL[ \t]+\\(*0L*\\)*";
640 c_fix_arg = <<- _EOFix_
645 #else /* ! __GNUG__ */
647 #endif /* __GNUG__ */
648 #else /* ! __cplusplus */
649 #define NULL ((void *)0)
650 #endif /* __cplusplus */
653 test_text = "# define\tNULL \t(0L) /* typed NULL */";
657 * pthread.h on AIX defines PTHREAD_ONCE_INIT, PTHREAD_MUTEX_INITIALIZER,
658 * PTHREAD_COND_INITIALIZER and PTHREAD_RWLOCK_INITIALIZER without enough
662 hackname = aix_once_init_1;
665 select = "#define[ \t]PTHREAD_ONCE_INIT \\\\\n"
668 c_fix_arg = "#define PTHREAD_ONCE_INIT \\\n"
670 test_text = "#define PTHREAD_ONCE_INIT \\\\\n"
675 hackname = aix_once_init_2;
678 select = "[ \t]0 \\\\\n"
681 c_fix_arg = " 0 \\\n"
683 test_text = " 0 \\\\\n"
688 hackname = aix_mutex_initializer_1;
691 select = "#define[ \t]PTHREAD_MUTEX_INITIALIZER \\\\\n"
694 c_fix_arg = "#define PTHREAD_MUTEX_INITIALIZER \\\n"
696 test_text = "#define PTHREAD_MUTEX_INITIALIZER \\\\\n"
701 hackname = aix_cond_initializer_1;
704 select = "#define[ \t]PTHREAD_COND_INITIALIZER \\\\\n"
707 c_fix_arg = "#define PTHREAD_COND_INITIALIZER \\\n"
709 test_text = "#define PTHREAD_COND_INITIALIZER \\\\\n"
714 hackname = aix_rwlock_initializer_1;
717 select = "#define[ \t]PTHREAD_RWLOCK_INITIALIZER \\\\\n"
720 c_fix_arg = "#define PTHREAD_RWLOCK_INITIALIZER \\\n"
722 test_text = "#define PTHREAD_RWLOCK_INITIALIZER \\\\\n"
727 /* On AIX 'typedef struct
{<stuff
>} * physadr_t
;' needs to give the struct a
728 name for linkage purposes. Fortunately it is on exactly one
731 hackname = aix_physadr_t;
734 select = "typedef[ \t]*struct[ \t]*([{][^}]*[}][ \t]*\\*[ \t]*physadr_t;)";
736 c_fix_arg = "typedef struct __physadr_s %1";
737 test_text = "typedef struct { random stuff } * physadr_t;";
741 * pthread.h on AIX 4.3.3 tries to define a macro without whitspace
742 * which violates a requirement of ISO C.
745 hackname = aix_pthread;
747 select = "(#define[\t ][A-Za-z_0-9]+)(\\\\\n[^A-Za-z_0-9 \t\n(])";
750 test_text = "#define PTHREAD_MUTEX_INITIALIZER\\\\\n"
751 "{...init stuff...}";
755 * AIX stdint.h fixes.
758 hackname = aix_stdint_1;
760 files = stdint-aix.h, stdint.h;
761 select = "#define[ \t]UINT8_MAX[ \t]\\(255U\\)\n"
762 "#define[ \t]UINT16_MAX[ \t]\\(65535U\\)";
764 c_fix_arg = "#define UINT8_MAX (255)\n"
765 "#define UINT16_MAX (65535)";
766 test_text = "#define UINT8_MAX (255U)\n"
767 "#define UINT16_MAX (65535U)";
774 hackname = aix_stdint_2;
776 files = stdint-aix.h, stdint.h;
777 select = "#define[ \t]INTPTR_MIN[ \t]INT64_MIN\n"
778 "#define[ \t]INTPTR_MAX[ \t]INT64_MAX\n"
779 "#define[ \t]UINTPTR_MAX[ \t]UINT64_MAX\n"
781 "#define[ \t]INTPTR_MIN[ \t]INT32_MIN\n"
782 "#define[ \t]INTPTR_MAX[ \t]INT32_MAX\n"
783 "#define[ \t]UINTPTR_MAX[ \t]UINT32_MAX";
785 c_fix_arg = "#define INTPTR_MIN (-INTPTR_MAX-1)\n"
786 "#define INTPTR_MAX 9223372036854775807L\n"
787 "#define UINTPTR_MAX 18446744073709551615UL\n"
789 "#define INTPTR_MIN (-INTPTR_MAX-1)\n"
790 "#define INTPTR_MAX 2147483647L\n"
791 "#define UINTPTR_MAX 4294967295UL";
792 test_text = "#define INTPTR_MIN INT64_MIN\n"
793 "#define INTPTR_MAX INT64_MAX\n"
794 "#define UINTPTR_MAX UINT64_MAX\n"
796 "#define INTPTR_MIN INT32_MIN\n"
797 "#define INTPTR_MAX INT32_MAX\n"
798 "#define UINTPTR_MAX UINT32_MAX";
805 hackname = aix_stdint_3;
807 files = stdint-aix.h, stdint.h;
808 select = "#define[ \t]PTRDIFF_MIN[ \t]INT64_MIN\n"
809 "#define[ \t]PTRDIFF_MAX[ \t]INT64_MAX\n"
811 "#define[ \t]PTRDIFF_MIN[ \t]*INT32_MIN\n"
812 "#define[ \t]PTRDIFF_MAX[ \t]*INT32_MAX";
814 c_fix_arg = "#define PTRDIFF_MIN (-9223372036854775807L - 1)\n"
815 "#define PTRDIFF_MAX 9223372036854775807L\n"
817 "#define PTRDIFF_MIN (-2147483647L - 1)\n"
818 "#define PTRDIFF_MAX 2147483647L";
819 test_text = "#define PTRDIFF_MIN INT64_MIN\n"
820 "#define PTRDIFF_MAX INT64_MAX\n"
822 "#define PTRDIFF_MIN INT32_MIN\n"
823 "#define PTRDIFF_MAX INT32_MAX";
830 hackname = aix_stdint_4;
832 files = stdint-aix.h, stdint.h;
833 select = "#define[ \t]SIZE_MAX[ \t]UINT64_MAX\n"
835 "#define[ \t]SIZE_MAX[ \t]*UINT32_MAX";
837 c_fix_arg = "#define SIZE_MAX 18446744073709551615UL\n"
839 "#define SIZE_MAX 4294967295UL";
840 test_text = "#define SIZE_MAX UINT64_MAX\n"
842 "#define SIZE_MAX UINT32_MAX";
849 hackname = aix_stdint_5;
851 files = stdint-aix.h, stdint.h;
852 select = "#define[ \t]UINT8_C\\(c\\)[ \t]__CONCAT__\\(c,U\\)\n"
853 "#define[ \t]UINT16_C\\(c\\)[ \t]__CONCAT__\\(c,U\\)";
855 c_fix_arg = "#define UINT8_C(c) c\n"
856 "#define UINT16_C(c) c";
857 test_text = "#define UINT8_C(c) __CONCAT__(c,U)\n"
858 "#define UINT16_C(c) __CONCAT__(c,U)";
862 * stdio.h on AIX defines ferror, clearerr and feof as C++ inline, which
863 produces wrong code with G++.
866 hackname = aix_stdio_inline;
869 select = "#ifdef __cplusplus\\\n"
873 c_fix_arg = "#ifdef __cplusplus\n"
876 "#if (defined(__cplusplus) && defined(__IBMCPP__))\n"
878 test_text = "#ifdef __cplusplus\n}\n\n#ifdef ferror";
882 * stdlib.h on AIX uses #define on malloc and friends.
885 hackname = aix_stdlib_malloc;
888 select = "#define[ \t]+malloc[ \t]+__linux_malloc";
890 c_fix_arg = "extern void *malloc(size_t) __asm__(\"__linux_malloc\");";
891 test_text = "#define malloc __linux_malloc";
895 hackname = aix_stdlib_realloc;
898 select = "#define[ \t]+realloc[ \t]+__linux_realloc";
900 c_fix_arg = "extern void *realloc(void *, size_t) __asm__(\"__linux_realloc\");";
901 test_text = "#define realloc __linux_realloc";
905 hackname = aix_stdlib_calloc;
908 select = "#define[ \t]+calloc[ \t]+__linux_calloc";
910 c_fix_arg = "extern void *calloc(size_t, size_t) __asm__(\"__linux_calloc\");";
911 test_text = "#define calloc __linux_calloc";
915 hackname = aix_stdlib_valloc;
918 select = "#define[ \t]+valloc[ \t]+__linux_valloc";
920 c_fix_arg = "extern void *valloc(size_t) __asm__(\"__linux_valloc\");";
921 test_text = "#define valloc __linux_valloc";
925 hackname = aix_stdlib_vec_malloc;
928 select = "#define[ \t]+malloc[ \t]+vec_malloc";
930 c_fix_arg = "extern void *malloc(size_t) __asm__(\"vec_malloc\");";
931 test_text = "#define malloc vec_malloc";
935 hackname = aix_stdlib_vec_calloc;
938 select = "#define[ \t]+calloc[ \t]+vec_calloc";
940 c_fix_arg = "extern void *calloc(size_t, size_t) __asm__(\"vec_calloc\");";
941 test_text = "#define calloc vec_calloc";
945 * stdlib.h on AIX 4.3 declares strtof() with a non-const first argument.
948 hackname = aix_strtof_const;
951 select = "((extern[ \t]+)?float[ \t]+strtof)\\(char \\*, char \\*\\*\\);";
953 c_fix_arg = "%1(const char *, char **);";
954 test_text = "extern float strtof(char *, char **);";
958 * sys/machine.h on AIX 4.3.3 puts whitespace between a \ and a newline
959 * in an otherwise harmless (and #ifed out) macro definition
962 hackname = aix_sysmachine;
964 files = sys/machine.h;
968 test_text = "#define FOO \\\n"
969 " bar \\ \n baz \\ \n bat";
973 * sys/wait.h on AIX 5.2 defines macros that have both signed and
974 * unsigned types in conditional expressions.
977 hackname = aix_syswait_2;
980 select = '\? (\
(\
(\
(\
(unsigned
[^
)]*\
)[^
)]*\
) >> [^
)]*\
) \
& 0xff\
) : -1)';
982 c_fix_arg = "? (int)%1";
983 test_text = "#define WSTOPSIG(__x) "
984 "(int)(WIFSTOPPED(__x) ? ((((unsigned int)__x) >> 8) & 0xff) : -1)";
988 * sys/signal.h on some versions of AIX uses volatile in the typedef of
989 * sig_atomic_t, which causes gcc to generate a warning about duplicate
990 * volatile when a sig_atomic_t variable is declared volatile, as
991 * required by ANSI C.
994 hackname = aix_volatile;
996 files = sys/signal.h;
997 select = "typedef volatile int sig_atomic_t";
999 c_fix_arg = "typedef int sig_atomic_t";
1000 test_text = "typedef volatile int sig_atomic_t;";
1004 * AIX unistd.h defines a static function with an empty parameter list.
1007 hackname = aix_unistd;
1011 select = "[ \t]+static[ \t]+int[ \t]+getdtablesize\\(\\)";
1013 c_fix_arg = "\tstatic int\t\tgetdtablesize(void)";
1014 test_text = " static int getdtablesize()";
1018 * Fix __assert declaration in assert.h on Alpha OSF/1.
1021 hackname = alpha___assert;
1023 select = '__assert\
(char \
*, char \
*, int\
)';
1025 c_fix_arg = "__assert(const char *, const char *, int)";
1026 test_text = 'extern void
__assert(char
*, char
*, int
);';
1030 * Fix assert macro in assert.h on Alpha OSF/1.
1031 * The superfluous int cast breaks C++.
1034 hackname = alpha_assert;
1036 select = "(#[ \t]*" 'define assert\
(EX\
).*)\
(\
(int\
) \
(EX\
)\
)';
1038 c_fix_arg = "%1(EX)";
1039 test_text = '#define
assert(EX
) (((int
) (EX
)) ?
(void
)0 '
1040 ': __assert(#EX
, __FILE__
, __LINE__
))';
1044 * Fix getopt declarations in stdio.h and stdlib.h on Alpha OSF/1 and AIX.
1047 hackname = alpha_getopt;
1050 select = 'getopt\
(int
, char \
*\
[\
], *char \
*\
)';
1052 c_fix_arg = "getopt(int, char *const[], const char *)";
1053 test_text = 'extern int
getopt(int
, char
*[], char *)
;';
1057 * Fix missing semicolon on Alpha OSF/4 in <net/if.h>
1060 hackname = alpha_if_semicolon;
1062 select = "struct[ \t]+sockaddr[ \t]+vmif_paddr[ \t]+/\\*";
1064 c_fix_arg = "struct sockaddr vmif_paddr;\t/*";
1065 test_text = ' struct sockaddr vmif_paddr
/* protocol address
*/';
1069 * Remove erroneous parentheses in sym.h on Alpha OSF/1.
1072 hackname = alpha_parens;
1074 select = '#ifndef\
(__mips64\
)';
1076 c_fix_arg = "#ifndef __mips64";
1077 test_text = "#ifndef(__mips64) /* bogus */\nextern int foo;\n#endif";
1081 * Fix return value of sbrk in unistd.h on Alpha OSF/1 V2.0
1085 hackname = alpha_sbrk;
1087 select = "char[ \t]*\\*[\t ]*sbrk[ \t]*\\(";
1089 c_fix_arg = "void *sbrk(";
1090 test_text = "extern char* sbrk(ptrdiff_t increment);";
1094 * For C++, avoid any typedef or macro definition of bool,
1095 * and use the built in type instead.
1096 * HP/UX 10.20 also has it in curses_colr/curses.h.
1099 hackname = avoid_bool_define;
1101 files = curses_colr/curses.h;
1105 select = "#[ \t]*define[ \t]+bool[ \t]";
1106 bypass = "__cplusplus";
1109 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1110 c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+bool[ \t].*";
1112 test_text = "# define bool\t char \n";
1119 hackname = avoid_bool_type;
1121 files = curses_colr/curses.h;
1125 select = "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;";
1126 bypass = "__cplusplus";
1129 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1131 test_text = "typedef unsigned int\tbool \t; /* bool\n type */";
1135 * For C++, avoid any typedef definition of wchar_t,
1136 * and use the built in type instead.
1137 * Don't do this for headers that are smart enough to do the right
1138 * thing (recent
[n
]curses.h and Xlib.h
).
1139 * Don
't do it for <linux/nls.h> which is never used from C++ anyway,
1140 * and will be broken by the edit.
1144 hackname = avoid_wchar_t_type;
1146 select = "^[ \t]*typedef[ \t].*[ \t]wchar_t[ \t]*;";
1147 bypass = "__cplusplus";
1148 bypass = "_LINUX_NLS_H";
1149 bypass = "XFree86: xc/lib/X11/Xlib\\.h";
1152 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1154 test_text = "typedef unsigned short\twchar_t \t; /* wchar_t\n type */";
1158 * Fix `typedef struct term;' on hppa1.1
-hp
-hpux9.
1161 hackname
= bad_struct_term
;
1163 select
= "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;";
1165 c_fix_arg
= "struct term;";
1167 test_text
= 'typedef struct term;';
1171 * Fix one other error in this file
:
1172 * a mismatched quote not inside a C comment.
1175 hackname
= badquote
;
1176 files
= sundev
/vuid_event.h
;
1179 c_fix_arg
= "does not";
1181 test_text
= "/* doesn't have matched single quotes */";
1185 * check for broken assert.h that needs stdio.h
1188 hackname
= broken_assert_stdio
;
1191 bypass
= "include.*stdio\\.h";
1193 c_fix_arg
= "#include <stdio.h>\n";
1194 test_text
= "extern FILE* stderr;";
1198 * check for broken assert.h that needs stdlib.h
1201 hackname
= broken_assert_stdlib
;
1203 select
= 'exit *\(|abort *\(';
1204 bypass
= "include.*stdlib\\.h";
1206 c_fix_arg
= "#ifdef __cplusplus\n"
1207 "#include <stdlib.h>\n"
1209 test_text
= "extern void exit ( int );";
1213 * Remove `extern double cabs
' declarations from math.h.
1214 * This conflicts with C99. Discovered on AIX.
1215 * Darwin hides its broken cabs in architecture-specific subdirs.
1218 hackname = broken_cabs;
1219 files = math.h, "architecture/*/math.h";
1220 select = "^extern[ \t]+double[ \t]+cabs";
1222 sed = "s/^extern[ \t]*double[ \t]*cabs[ \t]*\([^\\\)]*\);//";
1223 sed = "s/^extern[ \t]*long[ \t]*double[ \t]*cabsl[ \t]*\([^\\\)]*\);//";
1225 test_text = "#ifdef __STDC__\n"
1226 "extern double cabs(struct dbl_hypot);\n"
1228 "extern double cabs();\n"
1230 "extern double cabs ( _Complex z );";
1234 * Fixup Darwin's broken check for __builtin_nanf.
1237 hackname
= broken_nan
;
1239 * It is tempting to omit the first
"files" entry. Do not.
1240 * The testing machinery will take the first
"files" entry as the name
1241 * of a test file to play with. It would be a nuisance to have a directory
1242 * with the name
"*".
1244 files
= "architecture/ppc/math.h";
1245 files
= "architecture/*/math.h";
1246 select
= '#if defined\(__APPLE_CC__\) && \(__APPLE_CC__ >= 1345\)';
1249 c_fix_arg
= "#if 1";
1250 test_text
= "#if defined(__APPLE_CC__) && (__APPLE_CC__ >= 1345)";
1254 * Various systems derived from BSD4.4 contain a macro definition
1255 * for vfscanf that interacts badly with requirements of builtin
-attrs.def.
1256 * Known to be fixed in FreeBSD
5 system headers.
1259 hackname
= bsd_stdio_attrs_conflict
;
1261 mach
= "*-*-*darwin*";
1263 select
= "^#define[ \t]*vfscanf[ \t]*__svfscanf[ \t]*$";
1265 c_fix_arg
= '#define _BSD_STRING(_BSD_X) _BSD_STRINGX(_BSD_X)' "\n"
1266 '#define _BSD_STRINGX(_BSD_X) #_BSD_X' "\n"
1267 'int vfscanf(FILE *, const char *, __builtin_va_list) '
1268 '__asm__ (_BSD_STRING(__USER_LABEL_PREFIX__) "__svfscanf");';
1269 test_text
= '#define vfscanf __svfscanf';
1273 hackname
= apple_local_stdio_fn_deprecation
;
1274 mach
= "*-*-*darwin2*";
1277 select
= "__deprecated_msg([^\n]*)$";
1279 c_fix_arg
= "#if defined(__APPLE_LOCAL_DEPRECATIONS)\n"
1282 test_text
= '__deprecated_msg("This function is provided for compat...")';
1286 * Fix various macros used to define ioctl numbers.
1287 * The traditional syntax was
:
1289 * #define
_CTRL(n
, x
) (('n'<<8)+x
)
1290 * #define TCTRLCFOO
_CTRL(T
, 1)
1292 * but this does not work with the C standard
, which disallows macro
1293 * expansion inside strings. We have to rewrite it thus
:
1295 * #define
_CTRL(n
, x
) ((n
<<8)+x
)
1296 * #define TCTRLCFOO
_CTRL('T', 1)
1298 * The select expressions match too much
, but the c_fix code is cautious.
1300 * CTRL might be
: CTRL _CTRL ISCTRL BSD43_CTRL ...
1303 hackname
= ctrl_quotes_def
;
1304 select
= "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z][,)]";
1305 c_fix
= char_macro_def
;
1309 * This is two tests in order to ensure that the
"CTRL(c)" can
1310 * be selected in isolation from the multi
-arg format
1312 test_text
= "#define BSD43_CTRL(n, x) (('n'<<8)+x)\n";
1313 test_text
= "#define _CTRL(c) ('c'&037)";
1317 * Fix various macros used to define ioctl numbers.
1320 hackname
= ctrl_quotes_use
;
1321 select
= "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']";
1322 c_fix
= char_macro_use
;
1324 test_text
= "#define TCTRLFOO BSD43_CTRL(T, 1)";
1328 * sys
/mman.h on HP
/UX is not C
++ ready
,
1329 * even though NO_IMPLICIT_EXTERN_C is defined on HP
/UX.
1331 * rpc
/types.h on OSF1
/2.0 is not C
++ ready
,
1332 * even though NO_IMPLICIT_EXTERN_C is defined for the alpha.
1334 * The problem is the declaration of malloc.
1337 hackname
= cxx_unready
;
1339 files
= rpc
/types.h
;
1340 select
= '[^#]+malloc.*;'; /* Catch any form of declaration
1341 not within a macro.
*/
1342 bypass
= '"C"|__BEGIN_DECLS';
1345 c_fix_arg
= "#ifdef __cplusplus\n"
1348 c_fix_arg
= "#ifdef __cplusplus\n"
1351 test_text
= "extern void* malloc( size_t );";
1355 * macOS
10.12 <AvailabilityInternal.h
> uses
__attribute__((availability
))
1359 hackname
= darwin_availabilityinternal
;
1360 mach
= "*-*-darwin*";
1361 files
= AvailabilityInternal.h
;
1362 select
= "#define[ \t]+(__API_[ADU]\\([^)]*\\)).*";
1364 c_fix_arg
= <<- _EOFix_
1365 #if
defined(__has_attribute
)
1366 #if
__has_attribute(availability
)
1376 test_text
= "#define __API_A(x) __attribute__((availability(__API_AVAILABLE_PLATFORM_##x)))\n"
1377 "#define __API_D(msg,x) __attribute__((availability(__API_DEPRECATED_PLATFORM_##x,message=msg)))";
1381 * For the AAB_darwin7_9_long_double_funcs
fix (and later fixes for long long
)
1382 * to be useful
, the main math.h must use
<> and not
"" includes.
1385 hackname
= darwin_9_long_double_funcs_2
;
1386 mach
= "*-*-darwin*";
1388 select
= '#include[ \t]+\"';
1390 c_fix_arg
= "%1<%2.h>";
1392 c_fix_arg
= '([ \t]*#[ \t]*include[ \t]+)"([a-z0-9/]+)\.h"';
1394 test_text
= '#include <architecture/ppc/math.h>';
1398 * On darwin8 and earlier
, mach
-o
/swap.h isn
't properly guarded
1399 * by 'extern
"C"'. On darwin7 some mach/ headers aren't properly guarded.
1402 hackname
= darwin_externc
;
1403 mach
= "*-*-darwin*";
1404 files
= mach
-o
/swap.h
;
1405 files
= mach
/mach_time.h
;
1406 files
= mach
/mach_traps.h
;
1407 files
= mach
/message.h
;
1409 files
= mach
/semaphore.h
;
1410 bypass
= "extern \"C\"";
1411 bypass
= "__BEGIN_DECLS";
1413 c_fix_arg
= "#ifdef __cplusplus\n"
1416 c_fix_arg
= "#ifdef __cplusplus\n"
1419 test_text
= "extern void swap_fat_header();\n";
1423 * AvailabilityMacros.h on Darwin breaks with GCC
4.0, because of
1424 * bad __GNUC__ tests.
1427 hackname
= darwin_gcc4_breakage
;
1428 mach
= "*-*-darwin*";
1429 files
= AvailabilityMacros.h
;
1430 select
= "\\(__GNUC__ >= 3\\) && \\(__GNUC_MINOR__ >= 1\\)";
1432 c_fix_arg
= "((__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))";
1433 test_text
= "#if defined(__GNUC__) && (__GNUC__ >= 3) && "
1434 "(__GNUC_MINOR__ >= 1)\n";
1438 * math.h hides the long long functions that are available on the system for
1439 * 10.5 and
10.6 SDKs
, we expect to use them in G
++ without specifying a value
1440 * for __STDC_VERSION__
, or switching __STRICT_ANSI__ off.
1443 hackname
= darwin_ll_funcs_avail
;
1444 mach
= "*-*-darwin*";
1445 files
= architecture
/ppc
/math.h
, architecture
/i386
/math.h
;
1446 select
= "#if[^_]*__STDC_VERSION__[^_]*__STDC_VERSION__[^1]*199901L[^_]*"
1447 "__STRICT_ANSI__[^_]*__GNUC__[^\)]*";
1448 sed
= "s/#if[^_]*__STDC_VERSION__[^_]*__STDC_VERSION__[^_]*199901L[^_]*"
1449 "__STRICT_ANSI__[^_]*__GNUC__[^\\)]*\)/#if\ !\(__DARWIN_NO_LONG_LONG\)/";
1450 test_text
= "#if\ !(__DARWIN_NO_LONG_LONG)";
1454 * Before Mac OS X
10.8 <i386
/setjmp.h
> doesn
't mark longjump noreturn.
1457 hackname = darwin_longjmp_noreturn;
1458 mach = "*-*-darwin*";
1459 files = "i386/setjmp.h";
1461 select = "(.*longjmp\\(.*jmp_buf.*[^)]+\\));";
1463 c_fix_arg = "%1 __attribute__ ((__noreturn__));";
1465 test_text = "void siglongjmp(sigjmp_buf, int);";
1469 * Mac OS X 10.11 <os/trace.h> uses attribute on function definition.
1472 hackname = darwin_os_trace_1;
1473 mach = "*-*-darwin*";
1475 select = "^(_os_trace_verify_printf.*) (__attribute__.*)";
1478 test_text = "_os_trace_verify_printf(const char *msg, ...) __attribute__((format(printf, 1, 2)))";
1482 * Mac OS X 10.1[012] <os/trace.h> os_trace_payload_t typedef uses Blocks
1483 * extension without guard.
1486 hackname = darwin_os_trace_2;
1487 mach = "*-*-darwin*";
1489 select = "typedef.*\\^os_trace_payload_t.*";
1490 bypass = "#ifdef __BLOCKS__";
1492 c_fix_arg = "#if __BLOCKS__\n%0\n#endif";
1493 test_text = "typedef void (^os_trace_payload_t)(xpc_object_t xdict);";
1497 * macOSX 13.0 SDK objc/runtime.h uses Apple Blocks extension without a guard.
1501 hackname = darwin_objc_runtime_1;
1502 mach = "*-*-darwin2*";
1503 files = objc/runtime.h;
1504 select = <<- _EOSelect_
1506 objc_enumerateClasses.*
1510 .*void \(\^ _Nonnull block.*
1513 .*OBJC_REFINED_FOR_SWIFT.*
1515 bypass = "#ifdef __BLOCKS__";
1517 c_fix_arg = "#if __BLOCKS__\n%0\n#endif";
1518 test_text = <<- _OBJC_RUNTIME_1
1520 objc_enumerateClasses(const void * _Nullable image,
1521 const char * _Nullable namePrefix,
1522 Protocol * _Nullable conformingTo,
1523 Class _Nullable subclassing,
1524 void (^ _Nonnull block)(Class _Nonnull aClass, BOOL * _Nonnull stop)
1526 OBJC_AVAILABLE(13.0, 16.0, 16.0, 9.0, 7.0)
1527 OBJC_REFINED_FOR_SWIFT;
1533 * In Mac OS X 10.1[012] <os/trace.h>, need to guard users of
1534 * os_trace_payload_t typedef, too.
1537 hackname = darwin_os_trace_3;
1538 mach = "*-*-darwin*";
1540 select = <<- _EOSelect_
1544 _os_trace.*os_trace_payload_t payload);
1547 c_fix_arg = "#if __BLOCKS__\n%0\n#endif";
1548 test_text = <<- _EOText_
1549 __API_AVAILABLE(macosx(10.10), ios(8.0), watchos(2.0), tvos(8.0))
1550 OS_EXPORT OS_NOTHROW OS_NOT_TAIL_CALLED
1552 _os_trace_with_buffer(void *dso, const char *message, uint8_t type, const void *buffer, size_t buffer_size, os_trace_payload_t payload);
1554 __OSX_AVAILABLE_STARTING(__MAC_10_12, __IPHONE_10_0)
1555 OS_EXPORT OS_NOTHROW
1557 _os_trace_internal(void *dso, uint8_t type, const char *format, const uint8_t *buf, size_t buf_size, os_trace_payload_t payload);
1562 * In macOS 10.10 <os/base.h>, doesn't have __has_extension guarded.
1565 hackname
= darwin_os_base_1
;
1566 mach
= "*-*-darwin*";
1568 select
= <<- OS_BASE_1_SEL
1569 #define __has_attribute.
*
1572 bypass
= "#define __has_extension";
1574 c_fix_arg
= <<- OS_BASE_1_FIX
1576 #ifndef __has_extension
1577 #define
__has_extension(x
) 0
1580 test_text
= <<- OS_BASE_1_TEST
1581 #define
__has_attribute(x
) 0
1589 * In macOS
10.10 <dispatch
/object.h
>, has unguarded block syntax.
1592 hackname
= darwin_dispatch_object_1
;
1593 mach
= "*-*-darwin*";
1594 files
= dispatch
/object.h
;
1595 select
= "typedef void.*\\^dispatch_block_t.*";
1596 bypass
= "#ifdef __BLOCKS__";
1598 c_fix_arg
= "#if __BLOCKS__\n%0\n#endif";
1599 test_text
= <<- DISPATCH_OBJECT_1_TEST
1600 typedef
void (^dispatch_block_t
)(void
);
1603 DISPATCH_OBJECT_1_TEST
;
1607 * __private_extern__ doesn
't exist in FSF GCC. Even if it did,
1608 * why would you ever put it in a system header file?
1611 hackname = darwin_private_extern;
1612 mach = "*-*-darwin*";
1613 files = mach-o/dyld.h;
1614 select = "__private_extern__ [a-z_]+ _dyld_";
1616 c_fix_arg = "extern";
1617 c_fix_arg = "__private_extern__";
1618 test_text = "__private_extern__ int _dyld_func_lookup(\n"
1619 "const char *dyld_func_name,\n"
1620 "unsigned long *address);\n";
1624 * Darwin headers have a stdint.h that defines UINT8_C and UINT16_C to
1625 * unsigned constants.
1628 hackname = darwin_stdint_1;
1629 mach = "*-*-darwin*";
1630 files = stdint-darwin.h, stdint.h;
1632 c_fix_arg = "#define UINT8_C(v)\tv\n#define UINT16_C(v)\tv";
1633 select = "#define UINT8_C\\(v\\)[ \t]+\\(v ## U\\)\n"
1634 "#define UINT16_C\\(v\\)[ \t]+\\(v ## U\\)";
1635 test_text = "#define UINT8_C(v) (v ## U)\n"
1636 "#define UINT16_C(v) (v ## U)";
1640 * Darwin headers have a stdint.h that defines INTPTR_MIN and INTPTR_MAX
1644 hackname = darwin_stdint_2;
1645 mach = "*-*-darwin*";
1646 files = stdint-darwin.h, stdint.h;
1648 c_fix_arg = "#if __WORDSIZE == 64\n"
1649 "#define INTPTR_MAX 9223372036854775807L\n"
1650 "#define INTPTR_MIN (-INTPTR_MAX-1)\n"
1652 "#define INTPTR_MAX 2147483647L\n"
1653 "#define INTPTR_MIN (-INTPTR_MAX-1)\n"
1655 select = "#if __WORDSIZE == 64\n"
1656 "#define INTPTR_MIN[ \t]+INT64_MIN\n"
1657 "#define INTPTR_MAX[ \t]+INT64_MAX\n"
1659 "#define INTPTR_MIN[ \t]+INT32_MIN\n"
1660 "#define INTPTR_MAX[ \t]+INT32_MAX\n"
1662 test_text = "#if __WORDSIZE == 64\n"
1663 "#define INTPTR_MIN INT64_MIN\n"
1664 "#define INTPTR_MAX INT64_MAX\n"
1666 "#define INTPTR_MIN INT32_MIN\n"
1667 "#define INTPTR_MAX INT32_MAX\n"
1672 * Darwin headers have a stdint.h that defines UINTPTR_MAX with a wrong type.
1675 hackname = darwin_stdint_3;
1676 mach = "*-*-darwin*";
1677 files = stdint-darwin.h, stdint.h;
1679 c_fix_arg = "#if __WORDSIZE == 64\n"
1680 "#define UINTPTR_MAX 18446744073709551615UL\n"
1682 "#define UINTPTR_MAX 4294967295UL\n"
1684 select = "#if __WORDSIZE == 64\n"
1685 "#define UINTPTR_MAX[ \t]+UINT64_MAX\n"
1687 "#define UINTPTR_MAX[ \t]+UINT32_MAX\n"
1689 test_text = "#if __WORDSIZE == 64\n"
1690 "#define UINTPTR_MAX UINT64_MAX\n"
1692 "#define UINTPTR_MAX UINT32_MAX\n"
1697 * Darwin headers have a stdint.h that defines SIZE_MAX with a wrong type.
1700 hackname = darwin_stdint_4;
1701 mach = "*-*-darwin*";
1702 files = stdint-darwin.h, stdint.h;
1704 c_fix_arg = "#if __WORDSIZE == 64\n"
1705 "#define SIZE_MAX 18446744073709551615UL\n"
1707 "#define SIZE_MAX 4294967295UL\n"
1709 select = "#if __WORDSIZE == 64\n"
1710 "#define SIZE_MAX[ \t]+UINT64_MAX\n"
1712 "#define SIZE_MAX[ \t]+UINT32_MAX\n"
1714 test_text = "#if __WORDSIZE == 64\n"
1715 "#define SIZE_MAX UINT64_MAX\n"
1717 "#define SIZE_MAX UINT32_MAX\n"
1722 * Darwin headers have a stdint.h that defines {U,}INTMAX_{MIN,MAX}
1723 * with a wrong type.
1726 hackname = darwin_stdint_5;
1727 mach = "*-*-darwin*";
1728 files = stdint-darwin.h, stdint.h;
1730 c_fix_arg = "#if __WORDSIZE == 64\n"
1731 "#define INTMAX_MIN (-9223372036854775807L - 1)\n"
1732 "#define INTMAX_MAX 9223372036854775807L\n"
1733 "#define UINTMAX_MAX 18446744073709551615UL\n"
1735 "#define INTMAX_MIN (-9223372036854775807LL - 1)\n"
1736 "#define INTMAX_MAX 9223372036854775807LL\n"
1737 "#define UINTMAX_MAX 18446744073709551615ULL\n"
1739 select = "#define INTMAX_MIN[ \t]+INT64_MIN\n"
1740 "#define INTMAX_MAX[ \t]+INT64_MAX\n"
1742 "#define UINTMAX_MAX[ \t]+UINT64_MAX";
1743 test_text = "#define INTMAX_MIN INT64_MIN\n"
1744 "#define INTMAX_MAX INT64_MAX\n"
1746 "#define UINTMAX_MAX UINT64_MAX";
1750 * Darwin headers have a stdint.h that defines {U,}INTMAX_C
1751 * with a wrong type.
1754 hackname = darwin_stdint_6;
1755 mach = "*-*-darwin*";
1756 files = stdint-darwin.h, stdint.h;
1758 c_fix_arg = "#if __WORDSIZE == 64\n"
1759 "#define PTRDIFF_MIN (-9223372036854775807L - 1)\n"
1760 "#define PTRDIFF_MAX 9223372036854775807L\n"
1762 "#define PTRDIFF_MIN (-2147483647 - 1)\n"
1763 "#define PTRDIFF_MAX 2147483647\n"
1765 select = "#if __WORDSIZE == 64\n"
1766 "#define PTRDIFF_MIN[ \t]+INT64_MIN\n"
1767 "#define PTRDIFF_MAX[ \t]+INT64_MAX\n"
1769 "#define PTRDIFF_MIN[ \t]+INT32_MIN\n"
1770 "#define PTRDIFF_MAX[ \t]+INT32_MAX\n"
1772 test_text = "#if __WORDSIZE == 64\n"
1773 "#define PTRDIFF_MIN INT64_MIN\n"
1774 "#define PTRDIFF_MAX INT64_MAX\n"
1776 "#define PTRDIFF_MIN INT32_MIN\n"
1777 "#define PTRDIFF_MAX INT32_MAX\n"
1782 * Darwin headers have a stdint.h that defines {U,}INTMAX_C
1783 * with a wrong type.
1786 hackname = darwin_stdint_7;
1787 mach = "*-*-darwin*";
1788 files = stdint-darwin.h, stdint.h;
1790 c_fix_arg = "#if __WORDSIZE == 64\n"
1791 "#define INTMAX_C(v) (v ## L)\n"
1792 "#define UINTMAX_C(v) (v ## UL)\n"
1794 "#define INTMAX_C(v) (v ## LL)\n"
1795 "#define UINTMAX_C(v) (v ## ULL)\n"
1797 select = "#define INTMAX_C\\(v\\)[ \t]+\\(v ## LL\\)\n"
1798 "#define UINTMAX_C\\(v\\)[ \t]+\\(v ## ULL\\)";
1799 bypass = '#ifdef __LP64__
';
1800 test_text = "#define INTMAX_C(v) (v ## LL)\n"
1801 "#define UINTMAX_C(v) (v ## ULL)";
1804 /* The SDK included with XCode 10.2 has the file <sys/ucred.h> that uses the
1805 C11 _Atomic keyword (exposing it to C++ code). The work-around here follows
1806 the header in declaring the entity volatile when _Atomic is not available.
1809 hackname = darwin_ucred__Atomic;
1810 mach = "*-*-darwin*";
1811 files = sys/ucred.h;
1814 c_fix_arg = "#if (__STDC_VERSION__ < 201112L) || defined(__cplusplus)\n"
1815 "# define _Atomic volatile\n"
1817 c_fix_arg = "#if (__STDC_VERSION__ < 201112L) || defined(__cplusplus)\n"
1820 test_text = ""; /* Don't provide this for wrap fixes.
*/
1823 /* The darwin headers don
't accept __FLT_EVAL_METHOD__ == 16. */
1825 hackname = darwin_flt_eval_method;
1826 mach = "*-*-darwin*";
1828 select = "^#if __FLT_EVAL_METHOD__ == 0( \\|\\| __FLT_EVAL_METHOD__ == -1)?$";
1830 c_fix_arg = "%0 || __FLT_EVAL_METHOD__ == 16";
1831 test_text = "#if __FLT_EVAL_METHOD__ == 0\n"
1832 "#if __FLT_EVAL_METHOD__ == 0 || __FLT_EVAL_METHOD__ == -1";
1836 * Fix <c_asm.h> on Digital UNIX V4.0:
1837 * It contains a prototype for a DEC C internal asm() function,
1838 * clashing with gcc's asm keyword. So protect this with __DECC.
1841 hackname
= dec_intern_asm
;
1843 sed
= "/^[ \t]*float[ \t]*fasm/i\\\n#ifdef __DECC\n";
1844 sed
= "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n"
1848 " ... asm stuff ...\n"
1849 "};\n#pragma intrinsic( dasm )\n/* END ASM TEST*/";
1853 * Fix typo in
<wchar.h
> on DJGPP
2.03.
1856 hackname
= djgpp_wchar_h
;
1858 select
= "__DJ_wint_t";
1859 bypass
= "sys/djtypes.h";
1861 c_fix_arg
= "%0\n#include <sys/djtypes.h>";
1862 c_fix_arg
= "#include <stddef.h>";
1863 test_text
= "#include <stddef.h>\n"
1864 "extern __DJ_wint_t x;\n";
1868 * Fix these Sun OS files to avoid an invalid identifier in an #ifdef.
1871 hackname
= ecd_cursor
;
1872 files
= "sunwindow/win_lock.h";
1873 files
= "sunwindow/win_cursor.h";
1874 select
= 'ecd\.cursor';
1876 c_fix_arg
= 'ecd_cursor';
1878 test_text
= "#ifdef ecd.cursor\n#error bogus\n#endif /* ecd+cursor */";
1882 * Incorrect feraiseexcept extern inline in bits
/fenv.h on x86_64
1883 * that fails when compiling for SSE
-less
32-bit x86.
1886 hackname
= feraiseexcept_nosse_divbyzero
;
1887 mach
= 'i[34567]86-*-linux*', 'x86*-linux*', 'amd64-*-linux*';
1888 files
= bits
/fenv.h
, '*/bits/fenv.h';
1889 select
= "^([\t ]*)__asm__ __volatile__ \\(\"divss %1, %0 *\" : "
1890 ": \"x\" \\(__f\\), \"x\" \\(__g\\)\\);$";
1891 bypass
= "\"fdivp .*; fwait\"";
1894 c_fix_arg
= <<- _EOText_
1895 # ifdef __SSE_MATH__
1898 %1__asm__
__volatile__ ("fdivp %%%%st, %%%%st(1); fwait"
1899 %1 : "=t" (__f
) : "0" (__f
), "u" (__g
) : "st(1)");
1903 test_text
= <<- _EOText_
1904 __asm__
__volatile__ ("divss %1, %0" : : "x" (__f
), "x" (__g
));
1909 * Incorrect feraiseexcept extern inline in bits
/fenv.h on x86_64
1910 * that fails when compiling for SSE
-less
32-bit x86.
1913 hackname
= feraiseexcept_nosse_invalid
;
1914 mach
= 'i[34567]86-*-linux*', 'x86*-linux*', 'amd64-*-linux*';
1915 files
= bits
/fenv.h
, '*/bits/fenv.h';
1916 select
= "^([\t ]*)__asm__ __volatile__ \\(\"divss %0, %0 *\" : "
1917 ": \"x\" \\(__f\\)\\);$";
1918 bypass
= "\"fdiv .*; fwait\"";
1921 c_fix_arg
= <<- _EOText_
1922 # ifdef __SSE_MATH__
1925 %1__asm__
__volatile__ ("fdiv %%%%st, %%%%st(0); fwait"
1926 %1 : "=t" (__f
) : "0" (__f
));
1930 test_text
= <<- _EOText_
1931 __asm__
__volatile__ ("divss %0, %0" : : "x" (__f
));
1936 * Between
8/24/1998 and
2/17/2001, FreeBSD system headers presume
1937 * neither the existence of GCC
3 nor its exact feature set yet break
1938 * (by design?
) when __GNUC__ is set beyond
2.
1941 hackname
= freebsd_gcc3_breakage
;
1942 mach
= "*-*-freebsd*";
1943 files
= sys
/cdefs.h
;
1944 select
= '^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7$';
1945 bypass
= '__GNUC__[ \t]*([>=]=[ \t]*[3-9]|>[ \t]*2)';
1947 c_fix_arg
= '%0 || __GNUC__ >= 3';
1948 test_text
= '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7';
1952 * Some releases of FreeBSD
4 and FreeBSD
5.0 and
5.1 system headers presume
1953 * neither the existence of GCC
4 nor its exact feature set yet break
1954 * (by design?
) when __GNUC__ is set beyond
3.
1957 hackname
= freebsd_gcc4_breakage
;
1958 mach
= "*-*-freebsd*";
1959 files
= sys
/cdefs.h
;
1960 select
= '^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 \|\| __GNUC__ == 3$';
1962 c_fix_arg
= '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ >= 3';
1963 test_text
= '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ == 3';
1967 * Some versions of glibc don
't expect the C99 inline semantics.
1970 hackname = glibc_c99_inline_1;
1971 files = features.h, '*/features.h
';
1972 select = "^ *&& !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__$";
1974 c_fix_arg = "%0 && (defined __extern_inline || defined __GNUC_GNU_INLINE__)";
1976 #if __GNUC_PREREQ (2, 7) && defined __OPTIMIZE__ \
1977 && !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__
1978 # define __USE_EXTERN_INLINES 1
1984 * Similar, but a version that didn't have __NO_INLINE__
1987 hackname
= glibc_c99_inline_1a
;
1988 files
= features.h
, '*/features.h';
1989 select
= "(\\) && defined __OPTIMIZE__ && !defined __OPTIMIZE_SIZE__)\n"
1990 "(#[ \t]*define[ \t]*__USE_EXTERN_INLINES[ \t]*1)";
1992 c_fix_arg
= "%1 && (defined __extern_inline || defined __GNUC_GNU_INLINE__)\n%2";
1994 #if
__GNUC_PREREQ (2, 7) && defined __OPTIMIZE__
&& !defined __OPTIMIZE_SIZE__
1995 # define __USE_EXTERN_INLINES
1
2001 * The glibc_c99_inline_1 fix should have fixed everything. Unfortunately
2002 * there are many glibc headers which do not respect __USE_EXTERN_INLINES.
2003 * The remaining glibc_c99_inline_
* fixes deal with some of those headers.
2006 hackname
= glibc_c99_inline_2
;
2007 files
= sys
/stat.h
, '*/sys/stat.h';
2008 select
= "extern __inline__ int";
2009 sed
= "s/extern int \\(stat\\)/"
2010 "#ifdef __GNUC_GNU_INLINE__\\\nextern\\\n#endif\\\n"
2011 "__inline__ int \\1/";
2012 sed
= "s/extern int \\([lf]stat\\)/"
2013 "#ifdef __GNUC_GNU_INLINE__\\\nextern\\\n#endif\\\n"
2014 "__inline__ int \\1/";
2015 sed
= "s/extern int \\(mknod\\)/"
2016 "#ifdef __GNUC_GNU_INLINE__\\\nextern\\\n#endif\\\n"
2017 "__inline__ int \\1/";
2018 sed
= "s/extern int __REDIRECT\\(_NTH\\)\\{0,1\\} (\\(stat\\)/"
2019 "#ifdef __GNUC_GNU_INLINE__\\\nextern\\\n#endif\\\n"
2020 "__inline__ int __REDIRECT\\1 (\\2/";
2021 sed
= "s/extern int __REDIRECT\\(_NTH\\)\\{0,1\\} (\\([lf]stat\\)/"
2022 "#ifdef __GNUC_GNU_INLINE__\\\nextern\\\n#endif\\\n"
2023 "__inline__ int __REDIRECT\\1 (\\2/";
2024 sed
= "s/^extern __inline__ int/"
2025 "#ifdef __GNUC_GNU_INLINE__\\\nextern\\\n#endif\\\n"
2028 extern int
fstat64 (int __fd
, struct stat64
*__buf
) __THROW
__nonnull ((2));
2029 extern __inline__ int
2030 __NTH (fstat64 (int __fd
, struct stat64
*__statbuf
))
2036 * glibc_c99_inline_3
2039 hackname
= glibc_c99_inline_3
;
2040 files
= bits
/string2.h
, '*/bits/string2.h';
2041 select
= "extern __inline";
2042 bypass
= "__extern_inline|__GNU_STDC_INLINE__";
2044 c_fix_arg
= "# if defined(__cplusplus) || defined(__GNUC_STDC_INLINE__)";
2045 c_fix_arg
= "^# ifdef __cplusplus$";
2048 # define __STRING_INLINE inline
2050 # define __STRING_INLINE extern __inline
2056 * glibc_c99_inline_4
2059 hackname
= glibc_c99_inline_4
;
2060 files
= sys
/sysmacros.h
, '*/sys/sysmacros.h', wchar.h
, '*/wchar.h',
2061 pthread.h
, '*/pthread.h';
2062 bypass
= "__extern_inline|__gnu_inline__";
2063 select
= "(^| )extern __inline";
2065 c_fix_arg
= "%0 __attribute__ ((__gnu_inline__))";
2067 __extension__ extern __inline unsigned int
2068 extern __inline unsigned int
2072 /* glibc
-2.27 to
2.36 assume GCC
7 or later supports some or all
2073 * of _Float
{16,32,64,128} and _Float
{32,64,128}x keywords for C
,
2074 * but doesn
't for C++.
2077 hackname = glibc_cxx_floatn_1;
2078 files = bits/floatn.h, bits/floatn-common.h, "*/bits/floatn.h", "*/bits/floatn-common.h";
2079 select = "^([ \t]*#[ \t]*if !__GNUC_PREREQ \\(7, 0\\) \\|\\| )defined __cplusplus\n"
2080 "(([ \t]*/\\*[^\n]*\\*/\n)?"
2081 "([ \t]*#[ \t]*if[^\n]*\n)?"
2082 "[ \t]*#[ \t]*define __f(16|32|64|128)x?\\()";
2084 c_fix_arg = "%1(defined __cplusplus && !__GNUC_PREREQ (13, 0))\n%2";
2086 # if !__GNUC_PREREQ (7, 0) || defined __cplusplus
2087 /* The literal suffix f128 exists only since GCC 7.0. */
2088 # define __f128(x) x##l
2090 # define __f128(x) x##f128
2092 # if !__GNUC_PREREQ (7, 0) || defined __cplusplus
2093 /* The literal suffix (f128) exist for powerpc only since GCC 7.0. */
2094 # if __LDBL_MANT_DIG__ == 113
2095 # define __f128(x) x##l
2097 # define __f128(x) x##q
2100 # define __f128(x) x##f128
2102 # if !__GNUC_PREREQ (7, 0) || defined __cplusplus
2103 # ifdef __NO_LONG_DOUBLE_MATH
2104 # define __f64(x) x##l
2109 # define __f64(x) x##f64
2115 hackname = glibc_cxx_floatn_2;
2116 files = bits/floatn.h, bits/floatn-common.h, "*/bits/floatn.h", "*/bits/floatn-common.h";
2117 select = "^([ \t]*#[ \t]*(el)?if !__GNUC_PREREQ \\(7, 0\\) \\|\\| )defined __cplusplus\n"
2118 "(([ \t]*/\\*[^\n]*\\*/\n)?"
2119 "[ \t]*typedef[ \t]+[^\n]*[ \t]+_Float(16|32|64|128)x?([ \t]+__attribute__ \\(\\(__mode__ \\(__HF__\\)\\)\\))?;)";
2121 c_fix_arg = "%1(defined __cplusplus && !__GNUC_PREREQ (13, 0))\n%3";
2123 # if !__GNUC_PREREQ (7, 0) || defined __cplusplus
2124 typedef float _Float16 __attribute__ ((__mode__ (__HF__)));
2126 # if !__GNUC_PREREQ (7, 0) || defined __cplusplus
2127 typedef __float128 _Float128;
2130 # elif !__GNUC_PREREQ (7, 0) || defined __cplusplus
2131 typedef __float128 _Float128;
2137 hackname = glibc_cxx_floatn_3;
2138 files = bits/floatn.h, bits/floatn-common.h, "*/bits/floatn.h", "*/bits/floatn-common.h";
2139 select = "^([ \t]*#[ \t]*if !__GNUC_PREREQ \\(7, 0\\) \\|\\| )defined __cplusplus\n"
2140 "(([ \t]*/\\*[^\n]*\n?[^\n]*\\*/\n)?"
2141 "([ \t]*#[ \t]*if[^\n]*\n)?"
2142 "([ \t]*typedef[ \t]+[^\n]*;\n)?"
2143 "[ \t]*#[ \t]*define __CFLOAT(16|32|64|128)X?[ \t]+)";
2145 c_fix_arg = "%1(defined __cplusplus && !__GNUC_PREREQ (13, 0))\n%2";
2147 # if !__GNUC_PREREQ (7, 0) || defined __cplusplus
2148 # define __CFLOAT128 _Complex long double
2150 # define __CFLOAT128 _Complex _Float128
2152 # if !__GNUC_PREREQ (7, 0) || defined __cplusplus
2153 /* Add a typedef for older GCC compilers which don't natively support
2154 _Complex _Float128.
*/
2155 typedef _Complex float __cfloat128
__attribute__ ((__mode__ (__TC__
)));
2156 # define __CFLOAT128 __cfloat128
2158 # define __CFLOAT128 _Complex _Float128
2160 # if
!__GNUC_PREREQ (7, 0) || defined __cplusplus
2161 # ifdef __NO_LONG_DOUBLE_MATH
2162 # define __CFLOAT64 _Complex long double
2164 # define __CFLOAT64 _Complex double
2167 # define __CFLOAT64 _Complex _Float64
2173 hackname
= glibc_cxx_floatn_4
;
2174 files
= bits
/floatn.h
, "*/bits/floatn.h";
2175 select
= "^([ \t]*#[ \t]*if __LDBL_MANT_DIG__ == 113 && )defined __cplusplus\n"
2176 "(([ \t]*/\\*[^\n]*\\*/\n)?"
2177 "[ \t]*typedef[ \t]+[^\n]*[ \t]+_Float128;)";
2179 c_fix_arg
= "%1defined __cplusplus && !__GNUC_PREREQ (13, 0)\n%2";
2181 # if __LDBL_MANT_DIG__
== 113 && defined __cplusplus
2182 typedef long double _Float128
;
2183 # define __CFLOAT128 _Complex long double
2189 hackname
= glibc_cxx_floatn_5
;
2190 files
= bits
/floatn.h
, bits
/floatn
-common.h
, "*/bits/floatn.h", "*/bits/floatn-common.h";
2191 select
= "^([ \t]*#[ \t]*if !__GNUC_PREREQ \\(7, 0\\) \\|\\| )defined __cplusplus\n"
2192 "([ \t]*#[ \t]+error \"_Float128[xX] supported but no )";
2194 c_fix_arg
= "%1(defined __cplusplus && !__GNUC_PREREQ (13, 0))\n%2";
2196 # if
!__GNUC_PREREQ (7, 0) || defined __cplusplus
2197 # error
"_Float128X supported but no constant suffix"
2199 # if
!__GNUC_PREREQ (7, 0) || defined __cplusplus
2200 # error
"_Float128x supported but no type"
2205 /* glibc
-2.3.5 defines pthread mutex initializers incorrectly
,
2206 * so we replace them with versions that correspond to the
2210 hackname
= glibc_mutex_init
;
2212 select
= '\{ *\{ *0, *\} *\}';
2213 sed
= "/define[ \t]\\{1,\\}PTHREAD_MUTEX_INITIALIZER[ \t]*\\\\/{\n"
2214 "N\ns/{ { 0, } }/{ { 0, 0, 0, 0, 0, 0 } }/\n}";
2215 sed
= "s/{ \\(0, 0, 0, 0, PTHREAD_MUTEX_"
2216 "\\(RECURSIVE\\)_NP\\) }/{ \\1, 0 }/";
2217 sed
= "s/{ \\(0, 0, 0, 0, PTHREAD_MUTEX_"
2218 "\\(ERRORCHECK\\)_NP\\) }/{ \\1, 0 }/";
2219 sed
= "s/{ \\(0, 0, 0, 0, PTHREAD_MUTEX_"
2220 "\\(ADAPTIVE\\)_NP\\) }/{ \\1, 0 }/";
2221 sed
= "s/{ \\(0, 0, 0, PTHREAD_MUTEX_"
2222 "\\(RECURSIVE\\)_NP\\) }/{ \\1, 0, 0 }/";
2223 sed
= "s/{ \\(0, 0, 0, PTHREAD_MUTEX_"
2224 "\\(ERRORCHECK\\)_NP\\) }/{ \\1, 0, 0 }/";
2225 sed
= "s/{ \\(0, 0, 0, PTHREAD_MUTEX_"
2226 "\\(ADAPTIVE\\)_NP\\) }/{ \\1, 0, 0 }/";
2227 sed
= "/define[ \t]\\{1,\\}PTHREAD_RWLOCK_INITIALIZER[ \t]*\\\\/"
2228 "N;s/^[ \t]*#[ \t]*"
2229 "\\(define[ \t]\\{1,\\}PTHREAD_RWLOCK_INITIALIZER[ \t]*\\\\\\)\\n"
2230 "[ \t]*{ { 0, } }/# if __WORDSIZE == 64\\\n"
2232 " { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }\\\n"
2235 " { { 0, 0, 0, 0, 0, 0, 0, 0 } }\\\n"
2237 sed
= "s/{ \\(0, 0, 0, 0, 0, 0, "
2238 "PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP\\) }/{ \\1, 0 }/";
2239 sed
= "/define[ \t]\\{1,\\}PTHREAD_COND_INITIALIZER/"
2240 "s/{ { 0, } }/{ { 0, 0, 0, 0, 0, (void *) 0, 0, 0 } }/";
2242 test_text
= <<- _EOText_
2243 #define PTHREAD_MUTEX_INITIALIZER
\\
2246 # if __WORDSIZE
== 64
2247 # define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
\\
2248 { { 0, 0, 0, 0, PTHREAD_MUTEX_RECURSIVE_NP
} }
2249 # define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
\\
2250 { { 0, 0, 0, 0, PTHREAD_MUTEX_ERRORCHECK_NP
} }
2251 # define PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
\\
2252 { { 0, 0, 0, 0, PTHREAD_MUTEX_ADAPTIVE_NP
} }
2254 # define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
\\
2255 { { 0, 0, 0, PTHREAD_MUTEX_RECURSIVE_NP
} }
2256 # define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
\\
2257 { { 0, 0, 0, PTHREAD_MUTEX_ERRORCHECK_NP
} }
2258 # define PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
\\
2259 { { 0, 0, 0, PTHREAD_MUTEX_ADAPTIVE_NP
} }
2262 # define PTHREAD_RWLOCK_INITIALIZER
\\
2265 # if __WORDSIZE
== 64
2266 # define PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP
\\
2267 { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \\
2268 PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP
} }
2270 # define PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP
\\
2271 { { 0, 0, 0, 0, 0, 0, PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP
} }
2274 #define PTHREAD_COND_INITIALIZER
{ { 0, } }
2278 /* glibc versions before
2.5 have a version of stdint.h that defines
2279 UINT8_C and UINT16_C to produce unsigned constants
, as do uClibc
2280 versions with stdint.h based on those glibc versions.
*/
2282 hackname
= glibc_stdint
;
2284 select
= "GNU C Library";
2286 c_fix_arg
= "# define UINT8_C(c)\tc\n# define UINT16_C(c)\tc";
2287 c_fix_arg
= "# define UINT8_C\\(c\\)\tc ## U\n# define UINT16_C\\(c\\)\tc ## U";
2288 test_text
= "/* This file is part of the GNU C Library. */\n"
2289 "# define UINT8_C(c)\tc ## U\n"
2290 "# define UINT16_C(c)\tc ## U";
2293 /* Some versions of glibc have a version of bits
/string2.h that
2294 produces
"value computed is not used" warnings from strncpy
; fix
2295 this definition by using __builtin_strncpy instead as in newer
2298 hackname
= glibc_strncpy
;
2299 files
= bits
/string2.h
, '*/bits/string2.h';
2300 bypass
= "__builtin_strncpy";
2302 c_fix_arg
= "# define strncpy(dest, src, n) __builtin_strncpy (dest, src, n)";
2303 c_fix_arg
= "# define strncpy([^\n]*\\\\\n)*[^\n]*";
2305 # define
strncpy(dest
, src
, n
) \
2306 (__extension__ (__builtin_constant_p (src
) && __builtin_constant_p (n
) \\
2307 ?
(strlen (src
) + 1 >= ((size_t
) (n
)) \\
2308 ?
(char *)
memcpy (dest
, src
, n
) \\
2309 : strncpy (dest
, src
, n
)) \\
2310 : strncpy (dest
, src
, n
)))
2315 /* glibc
's tgmath.h relies on an expression that is not an integer
2316 constant expression being treated as it was by GCC 4.4 and
2319 hackname = glibc_tgmath;
2321 select = '\
(\
(\
(type\
) 0.25\
) && \
(\
(type\
) 0.25 - 1\
)\
)';
2322 bypass = "__floating_type\\(type\\) \\\\\n.*__builtin_classify_type";
2324 c_fix_arg = "(__builtin_classify_type ((type) 0) == 8 || "
2325 "(__builtin_classify_type ((type) 0) == 9 && "
2326 "__builtin_classify_type (__real__ ((type) 0)) == 8))";
2327 test_text = "# define __floating_type(type) (((type) 0.25) && ((type) 0.25 - 1))";
2331 * Fix these files to use the types we think they should for
2332 * ptrdiff_t, size_t, and wchar_t.
2334 * This defines the types in terms of macros predefined by our 'cpp
'.
2335 * This is supposedly necessary for glibc's handling of these types.
2336 * It
's probably not necessary for anyone else, but it doesn't hurt.
2339 hackname
= gnu_types
;
2340 files
= "sys/types.h";
2342 files
= "sys/stdtypes.h";
2346 bypass
= '_GCC_(PTRDIFF|SIZE|WCHAR)_T';
2347 select
= "^[ \t]*typedef[ \t]+.*[ \t](ptrdiff|size|wchar)_t;";
2349 /* The Solaris
10 headers already define these types correctly.
*/
2350 mach
= '*-*-solaris2.1[0-9]*';
2353 test_text
= "typedef long int ptrdiff_t; /* long int */\n"
2354 "typedef uint_t size_t; /* uint_t */\n"
2355 "typedef ushort_t wchar_t; /* ushort_t */";
2359 * Fix HP
& Sony
's use of "../machine/xxx.h"
2360 * to refer to: <machine/xxx.h>
2363 hackname = hp_inline;
2364 files = sys/spinlock.h;
2365 files = machine/machparam.h;
2366 select = "[ \t]*#[ \t]*include[ \t]+" '"\.\./machine/';
2369 c_fix_arg = "%1<machine
/%2.h
>";
2371 c_fix_arg = "([ \t]*#
[ \t]*include
[ \t]+)" '"\.\.
/machine
/'
2374 test_text = ' # include "..
/machine
/mumble.h
"';
2378 * Check for (...) in C++ code in HP/UX sys/file.h.
2381 hackname = hp_sysfile;
2383 select = "HPUX_SOURCE
";
2386 c_fix_arg = "(struct file
*, ...
)";
2387 c_fix_arg = '\(\.\.\.\)';
2389 test_text = "extern void
foo(...
); /* HPUX_SOURCE
- bad varargs
*/";
2393 * Un-Hide a series of five FP defines from post-1999 compliance GCC:
2394 * FP_NORMAL, FP_ZERO, FP_INFINITE, FP_SUBNORMAL and FP_NAN
2397 hackname = hppa_hpux_fp_macros;
2398 mach = "hppa
*-hp
-hpux11
*";
2400 select = "#
[ \t]*define
[ \t]*FP_NORMAL.
*\n"
2401 "#
[ \t]*define
[ \t]*FP_ZERO.
*\n"
2402 "#
[ \t]*define
[ \t]*FP_INFINITE.
*\n"
2403 "#
[ \t]*define
[ \t]*FP_SUBNORMAL.
*\n"
2404 "#
[ \t]*define
[ \t]*FP_NAN.
*\n";
2406 c_fix_arg = <<- _EOFix_
2407 #endif /* _INCLUDE_HPUX_SOURCE */
2409 #if defined(_INCLUDE_HPUX_SOURCE) || \
2410 (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L))
2413 #ifdef _INCLUDE_HPUX_SOURCE
2418 "# define FP_NORMAL
0\n"
2419 "# define FP_ZERO
1\n"
2420 "# define FP_INFINITE
2\n"
2421 "# define FP_SUBNORMAL
3\n"
2422 "# define FP_NAN
4\n";
2426 * Delete C++ double pow (double, int) inline function from HP-UX 10 & 11
2427 * math.h to prevent clash with define in c_std/bits/std_cmath.h.
2430 hackname = hpux10_cpp_pow_inline;
2431 files = fixinc-test-limits.h, math.h;
2432 select = <<- END_POW_INLINE
2433 ^# +ifdef +__cplusplus
2435 +inline +double +pow\(double +__d,int +__expon\) +\{
2436 [ ]+return +pow\(__d,\(double\)__expon\);
2447 "# ifdef __cplusplus
\n"
2449 " inline double
pow(double __d
,int __expon
) {\n"
2450 "\t return
pow(__d
,(double
)__expon
);\n"
2452 ' extern "C
"' " {\n"
2458 hackname = hpux11_cpp_pow_inline;
2460 select = " +inline double pow
\\(double d
,int expon
\\) \\{\n"
2461 " +return pow
\\(d
, \\(double
\\)expon
\\);\n"
2467 " inline double
pow(double d
,int expon
) {\n"
2468 " return
pow(d
, (double
)expon
);\n"
2473 * This hack fixes the declarations of _DINFINITY, _SINFINITY and _SQNAN.
2476 hackname = hpux_math_constexpr;
2477 mach = "*-hp
-hpux11
*";
2479 sed = "s@^
[ \t]*extern
[ \t]*const
[ \t]*double
[ \t]*_DINFINITY
;"
2480 "[ \t]*$@# define
_DINFINITY (__builtin_inf ())@
";
2481 sed = "s@^
[ \t]*extern
[ \t]*const
[ \t]*float
[ \t]*_SINFINITY
;"
2482 "[ \t]*$@# define
_SINFINITY (__builtin_inff ())@
";
2483 sed = "s@^
[ \t]*extern
[ \t]*const
[ \t]*float
[ \t]*_SQNAN
;"
2484 "[ \t]*$@# define
_SQNAN (__builtin_nanf (\\\"\\\"))@
";
2485 test_text = " extern const double _DINFINITY
;\n"
2486 " extern const float _SINFINITY
;\n"
2487 " extern const float _SQNAN
;";
2491 * Fix hpux 10.X missing ctype declarations 1
2494 hackname = hpux10_ctype_declarations1;
2496 select = "^#
[ \t]*define _toupper
\\(__c
\\)[ \t]*__toupper
\\(__c
\\)";
2497 bypass = "^
[ \t]*extern
[ \t]*int
[ \t]*__tolower
[ \t]*\\(";
2499 c_fix_arg = "#ifdef _PROTOTYPES
\n"
2500 "extern int
__tolower(int
);\n"
2501 "extern int
__toupper(int
);\n"
2502 "#else
/* NOT _PROTOTYPES
*/\n"
2503 "extern int
__tolower();\n"
2504 "extern int
__toupper();\n"
2505 "#endif
/* _PROTOTYPES
*/\n\n"
2508 test_text = "# define
_toupper(__c
) __toupper(__c
)\n";
2512 * Fix hpux 10.X missing ctype declarations 2
2515 hackname = hpux10_ctype_declarations2;
2517 select = "^# if defined
\\(_SB_CTYPE_MACROS
\\) && \\!defined
\\(__lint
\\)";
2518 bypass = "^
[ \t]*extern
[ \t]*int
[ \t]*_isalnum
[ \t]*\\(";
2520 c_fix_arg = "%0\n\n"
2521 "#ifdef _PROTOTYPES
\n"
2522 " extern int
_isalnum(int
);\n"
2523 " extern int
_isalpha(int
);\n"
2524 " extern int
_iscntrl(int
);\n"
2525 " extern int
_isdigit(int
);\n"
2526 " extern int
_isgraph(int
);\n"
2527 " extern int
_islower(int
);\n"
2528 " extern int
_isprint(int
);\n"
2529 " extern int
_ispunct(int
);\n"
2530 " extern int
_isspace(int
);\n"
2531 " extern int
_isupper(int
);\n"
2532 " extern int
_isxdigit(int
);\n"
2533 "# else
/* not _PROTOTYPES
*/\n"
2534 " extern int
_isalnum();\n"
2535 " extern int
_isalpha();\n"
2536 " extern int
_iscntrl();\n"
2537 " extern int
_isdigit();\n"
2538 " extern int
_isgraph();\n"
2539 " extern int
_islower();\n"
2540 " extern int
_isprint();\n"
2541 " extern int
_ispunct();\n"
2542 " extern int
_isspace();\n"
2543 " extern int
_isupper();\n"
2544 " extern int
_isxdigit();\n"
2545 "#endif
/* _PROTOTYPES
*/\n";
2547 test_text = "# if
defined(_SB_CTYPE_MACROS
) && !defined(__lint
)\n"
2548 " extern unsigned int
*__SB_masks
;\n";
2552 * Fix hpux 10.X missing stdio declarations
2555 hackname = hpux10_stdio_declarations;
2557 select = "^#
[ \t]*define _iob
[ \t]*__iob
";
2558 bypass = "^
[ \t]*extern
[ \t]*int
[ \t]*vsnprintf
[ \t]*\\(";
2560 c_fix_arg = "%0\n\n"
2561 "# if
defined(__STDC__
) ||
defined(__cplusplus
)\n"
2562 " extern int
snprintf(char
*, size_t
, const char
*, ...
);\n"
2563 " extern int
vsnprintf(char
*, size_t
, const char
*, __va_list
);\n"
2564 "# else
/* not __STDC__
) || __cplusplus
*/\n"
2565 " extern int
snprintf();\n"
2566 " extern int
vsnprintf();\n"
2567 "# endif
/* __STDC__
) || __cplusplus
*/\n";
2569 test_text = "# define _iob __iob
\n";
2573 * The HP-UX stddef.h is replaced by gcc's. It doesn't include sys/stdsyms.h.
2574 * As a result, we need to include sys/stdsyms.h in alloca.h.
2577 hackname = hppa_hpux11_alloca;
2578 mach = "hppa
*-*-hpux11
*";
2580 select = "#ifndef _STDDEF_INCLUDED
";
2582 c_fix_arg = "#ifndef _SYS_STDSYMS_INCLUDED
\n"
2583 "# include
<sys
/stdsyms.h
>\n"
2584 "#endif
/* _SYS_STDSYMS_INCLUDED
*/\n\n"
2587 test_text = "#ifndef _STDDEF_INCLUDED
";
2591 * Make sure hpux defines abs in header.
2594 hackname = hpux11_abs;
2595 mach = "*-hp
-hpux11
*";
2597 select = "ifndef _MATH_INCLUDED
";
2599 c_fix_arg = "if
!defined(_MATH_INCLUDED
) ||
defined(__GNUG__
)";
2600 test_text = "#ifndef _MATH_INCLUDED
";
2604 * Fix hpux11 __LWP_RWLOCK_VALID define
2607 hackname = hpux11_lwp_rwlock_valid;
2608 mach = "*-hp
-hpux11
*";
2609 files = sys/pthread.h;
2610 select = "#define __LWP_RWLOCK_VALID
[ \t]*0x8c91";
2612 c_fix_arg = "#define __LWP_RWLOCK_VALID
-29551";
2613 test_text = "#define __LWP_RWLOCK_VALID
0x8c91";
2620 hackname = hpux11_extern_sendfile;
2621 mach = "*-hp
-hpux11.
[12]*";
2622 files = sys/socket.h;
2623 select = "^
[ \t]*extern sbsize_t sendfile.
*\n.
*, int
\\)\\);\n";
2625 c_fix_arg = "#ifndef _APP32_64BIT_OFF_T
\n%0#endif
\n";
2626 test_text = " extern sbsize_t sendfile
__((int
, int
, off_t
, bsize_t
,\n"
2627 " const struct iovec
*, int
));\n";
2634 hackname = hpux11_extern_sendpath;
2635 mach = "*-hp
-hpux11.
[12]*";
2636 files = sys/socket.h;
2637 select = "^
[ \t]*extern sbsize_t sendpath.
*\n.
*, int
\\)\\);\n";
2639 c_fix_arg = "#ifndef _APP32_64BIT_OFF_T
\n%0#endif
\n";
2640 test_text = " extern sbsize_t sendpath
__((int
, int
, off_t
, bsize_t
,\n"
2641 " const struct iovec
*, int
));\n";
2645 * Keep HP-UX 11 from stomping on C++ math namespace
2646 * with defines for fabsf.
2649 hackname = hpux11_fabsf;
2650 mach = "*-hp
-hpux11
*";
2652 select = "^
[ \t]*#
[ \t]*define
[ \t]+fabsf
\\(.
*";
2655 c_fix_arg = "#ifndef __cplusplus
\n%0\n#endif
";
2659 "# define
fabsf(x
) ((float
)fabs((double
)(float
)(x
)))\n"
2664 * The definitions for PTHREAD_MUTEX_INITIALIZER and similar initializers
2665 * in pthread.h need to be constant expressions to be standard complient.
2666 * As a result, we need to remove the void * casts in the initializers
2667 * (see hpux11_pthread_const) and to change the __(M|C|RW)POINTER defines
2668 * to use the long type.
2671 hackname = hpux11_pthread_pointer;
2672 mach = "*-hp
-hpux11.
[0-3]*";
2673 files = sys/pthread.h;
2674 select = "(void
[ \t]*\\*)
(m|c|rw
)(_ptr
)";
2677 c_fix_arg = "long
\t%2%3";
2678 test_text = "#define __MPOINTER
\t\tvoid
\t *m_ptr
";
2682 * Remove void pointer cast and fix C99 constant in __POINTER_SET defines.
2685 hackname = hpux11_pthread_const;
2686 mach = "*-hp
-hpux11.
[0-3]*";
2687 files = sys/pthread.h;
2688 select = "^
(#define
[ \t]+__POINTER_SET
[ \t0,]*)
(.
*\\))";
2692 test_text = "#define __POINTER_SET
\t\t((void *)
1LL)";
2696 * Prevent HP-UX 11 from defining __size_t and preventing size_t from
2697 * being defined by having it define _hpux_size_t instead.
2700 hackname = hpux11_size_t;
2701 mach = "*-hp
-hpux11
*";
2702 select = "__size_t
";
2705 c_fix_arg = "_hpux_size_t
";
2708 "#define __size_t size_t
\n"
2709 " extern int
getpwuid_r( char
*, __size_t
, struct passwd
**)
;\n";
2713 * Fix hpux 11.00 broken snprintf declaration
2714 * (third argument is char *, needs to be const char * to prevent
2715 * spurious warnings with -Wwrite-strings or in C++).
2718 hackname = hpux11_snprintf;
2720 select = '(extern int snprintf *\(char *\*, *(|__|_hpux_)size_t,)'
2721 ' *(char *\*, *\.\.\.\);)';
2723 c_fix_arg = '%1 const %3';
2725 test_text = "extern int
snprintf(char
*, size_t
, char
*, ...
);\n"
2726 "extern int
snprintf(char
*, __size_t
, char
*, ...
);\n"
2727 "extern int
snprintf(char
*, _hpux_size_t
, char
*, ...
);";
2731 * Fix hpux 11.00 broken vsnprintf declaration
2734 hackname = hpux11_vsnprintf;
2736 select = '(extern int vsnprintf\(char \*, _[hpux]*_size_t, '
2737 'const char \*,) __va__list\);';
2739 c_fix_arg = "%1 __va_list
);";
2741 test_text = 'extern int vsnprintf(char *, _hpux_size_t, const char *,'
2746 * Fix missing const in hpux vsscanf declaration
2749 hackname = hpux_vsscanf;
2752 select = '(extern int vsscanf\()char';
2754 c_fix_arg = "%1const char
";
2756 test_text = 'extern int vsscanf(char *, const char *, __va_list);';
2760 * get rid of bogus inline definitions in HP-UX 8.0
2763 hackname = hpux8_bogus_inlines;
2766 bypass = "__GNUG__
";
2767 sed = "s@inline int
abs(int
[a
-z
][a
-z
]*)
{.
*}"
2768 "@extern
\"C
\" int
abs(int
);@
";
2769 sed = "s@inline double
abs(double
[a
-z
][a
-z
]*)
{.
*}@@
";
2770 sed = "s@inline int
sqr(int
[a
-z
][a
-z
]*)
{.
*}@@
";
2771 sed = "s@inline double
sqr(double
[a
-z
][a
-z
]*)
{.
*}@@
";
2772 test_text = "inline int
abs(int v
) { return (v
>=0)?v
:-v
; }\n"
2773 "inline double
sqr(double v
) { return v
**0.5; }";
2780 hackname = hpux_c99_intptr;
2781 mach = "*-hp
-hpux11.3
*";
2782 files = stdint-hpux11.h, stdint.h;
2783 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*PTRDIFF_MAX
[ \t]*"
2784 "INT32_MAX
[ \t]*$@#define
PTRDIFF_MAX (2147483647l)@
";
2785 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*PTRDIFF_MIN
[ \t]*"
2786 "INT32_MIN
[ \t]*$@#define
PTRDIFF_MIN (-PTRDIFF_MAX
- 1)@
";
2787 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*INTPTR_MAX
[ \t]*"
2788 "INT32_MAX
[ \t]*$@#define
INTPTR_MAX (2147483647l)@
";
2789 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*INTPTR_MIN
[ \t]*"
2790 "INT32_MIN
[ \t]*$@#define
INTPTR_MIN (-INTPTR_MAX
- 1)@
";
2791 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*UINTPTR_MAX
[ \t]*"
2792 "UINT32_MAX
[ \t]*$@#define
UINTPTR_MAX (4294967295ul)@
";
2793 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*SIZE_MAX
[ \t]*"
2794 "UINT32_MAX
[ \t]*$@#define
SIZE_MAX (4294967295ul)@
";
2795 test_text = "#define PTRDIFF_MAX INT32_MAX
\n"
2796 "#define PTRDIFF_MIN INT32_MIN
\n"
2797 "#define INTPTR_MAX INT32_MAX
\n"
2798 "#define INTPTR_MIN INT32_MIN
\n"
2799 "#define UINTPTR_MAX UINT32_MAX
\n"
2800 "#define SIZE_MAX UINT32_MAX
\n";
2804 * These hacks are need in inttypes.h on 11.23 and in stdint.h on 11.31.
2807 hackname = hpux_c99_inttypes;
2808 mach = "*-hp
-hpux11.
[23]*";
2810 files = stdint-hpux11.h, stdint.h;
2811 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*UINT8_C(__c
)[ \t]*"
2812 "__CONCAT_U__(__c
)[ \t]*$@#define
UINT8_C(__c
) (__c
)@
";
2813 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*UINT16_C(__c
)[ \t]*"
2814 "__CONCAT_U__(__c
)[ \t]*$@#define
UINT16_C(__c
) (__c
)@
";
2815 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*INT32_C(__c
)[ \t]*"
2816 "__CONCAT__(__c
,l
)[ \t]*$@#define
INT32_C(__c
) (__c
)@
";
2817 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*UINT32_C(__c
)[ \t].
*$@
"
2818 "#define
UINT32_C(__c
) __CONCAT__(__c
,u
)@
";
2819 test_text = "#define
UINT8_C(__c
) __CONCAT_U__(__c
)\n"
2820 "#define
UINT16_C(__c
) __CONCAT_U__(__c
)\n"
2821 "#define
INT32_C(__c
) __CONCAT__(__c
,l
)\n"
2822 "#define
UINT32_C(__c
) __CONCAT__(__c
,ul
)\n";
2826 * These hacks are need in inttypes.h on 11.23 and in stdint.h on 11.31.
2829 hackname = hpux_c99_inttypes2;
2830 mach = "*-hp
-hpux11.2
*";
2831 files = stdint-hpux11.h, stdint.h;
2832 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*INT8_C(__c
)[ \t]*"
2833 "((signed char
)(__c
))[ \t]*$@#define
INT8_C(__c
) (__c
)@
";
2834 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*UINT8_C(__c
)[ \t]*"
2835 "((unsigned char
)(__c
))[ \t]*$@#define
UINT8_C(__c
) (__c
)@
";
2836 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*INT16_C(__c
)[ \t]*"
2837 "((short
)(__c
))[ \t]*$@#define
INT16_C(__c
) (__c
)@
";
2838 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*UINT16_C(__c
)[ \t]*"
2839 "((unsigned short
)(__c
))[ \t]*$@#define
UINT16_C(__c
) (__c
)@
";
2840 test_text = "# define
INT8_C(__c
) ((signed char
)(__c
))\n"
2841 "# define
UINT8_C(__c
) ((unsigned char
)(__c
))\n"
2842 "# define
INT16_C(__c
) ((short
)(__c
))\n"
2843 "# define
UINT16_C(__c
) ((unsigned short
)(__c
))\n";
2847 * Fix broken and missing defines in inttypes.h
2850 hackname = hpux_c99_inttypes3;
2851 mach = "hppa
*-hp
-hpux11
*";
2853 select = "#define
[ \t]INTPTR_MAX
[ \t]*\n"
2854 "#define
[ \t]UINTPTR_MAX
[ \t]*\n";
2856 c_fix_arg = "#undef SIZE_MAX
\n"
2857 "#define SIZE_MAX __SIZE_MAX__
\n"
2858 "#ifdef __INTPTR_MAX__
\n"
2859 "# undef INTPTR_MAX
\n"
2860 "# define INTPTR_MAX __INTPTR_MAX__
\n"
2861 "# undef INTPTR_MIN
\n"
2862 "# define
INTPTR_MIN (-INTPTR_MAX
- 1)\n"
2864 "#ifdef __UINTPTR_MAX__
\n"
2865 "# undef UINTPTR_MAX
\n"
2866 "# define UINTPTR_MAX __UINTPTR_MAX__
\n"
2868 test_text = "#define INTPTR_MAX
\n"
2869 "#define UINTPTR_MAX
\n";
2873 * Fix missing SCNuMAX defines in inttypes.h
2876 hackname = hpux_c99_inttypes4;
2877 mach = "hppa
*-hp
-hpux11.
[01]*";
2879 sed = "/^
[ \t]*#
[ \t]*define
[ \t]*SCNxMAX
[ \t]*SCNx64
/a
\\\n"
2880 "#define SCNuMAX
\t SCNu64
\n";
2881 sed = "/^
[ \t]*#
[ \t]*define
[ \t]*SCNxMAX
[ \t]*SCNx32
/a
\\\n"
2882 "#define SCNuMAX
\t SCNu32
\n";
2883 test_text = "#define SCNxMAX SCNx64
\n"
2884 "#define SCNxMAX SCNx32
\n";
2888 * Fix missing PRIdPTR defines in inttypes.h
2891 hackname = hpux_c99_inttypes5;
2892 mach = "hppa
*-hp
-hpux11.
[01]*";
2894 select = "#ifndef
[ \t]_KERNEL
[ \t]*\n";
2896 c_fix_arg = "#ifndef __LP64__
\n"
2897 "#define PRIdPTR
\t\tPRId
32\n"
2898 "#define PRIiPTR
\t\tPRIi
32\n"
2899 "#define PRIoPTR
\t\tPRIo
32\n"
2900 "#define PRIuPTR
\t\tPRIu
32\n"
2901 "#define PRIxPTR
\t\tPRIx
32\n"
2902 "#define PRIXPTR
\t\tPRIX
32\n"
2904 "#define PRIdPTR
\t\tPRId
64\n"
2905 "#define PRIiPTR
\t\tPRIi
64\n"
2906 "#define PRIoPTR
\t\tPRIo
64\n"
2907 "#define PRIuPTR
\t\tPRIu
64\n"
2908 "#define PRIxPTR
\t\tPRIx
64\n"
2909 "#define PRIXPTR
\t\tPRIX
64\n"
2911 "#ifndef _KERNEL
\n";
2912 test_text = "#ifndef _KERNEL
\n";
2916 * Fix hpux broken ctype macros
2919 hackname = hpux_ctype_macros;
2921 select = '((: |\()__SB_masks \? )'
2922 '(__SB_masks\[__(alnum|c)\] & _IS)';
2924 c_fix_arg = "%1(int
)%3";
2926 test_text = ": __SB_masks ? __SB_masks
[__alnum
] & _ISCNTRL
\n"
2927 "# define
isalpha(__c
) (__SB_masks ? __SB_masks
[__c
] & _IS
\n";
2934 hackname = hpux_extern_errno;
2935 mach = "*-hp
-hpux10.
*";
2936 mach = "*-hp
-hpux11.
[0-2]*";
2938 select = "^
[ \t]*extern int errno
;$
";
2940 c_fix_arg = "#ifdef __cplusplus
\n"
2944 "#ifdef __cplusplus
\n"
2947 test_text = " extern int errno
;\n";
2951 * Fix hpux broken #ifndef _XOPEN_SOURCE_EXTENDED conditional on htonl etc.
2954 hackname = hpux_htonl;
2955 files = netinet/in.h;
2956 select = "#ifndef _XOPEN_SOURCE_EXTENDED
[ \t]*\n"
2958 " \\* Macros for number representation conversion
\\.
\n"
2962 c_fix_arg = "#if
1\n%1";
2964 test_text = "#ifndef _XOPEN_SOURCE_EXTENDED
\n"
2966 " * Macros for number representation conversion.
\n"
2969 "#define
ntohl(x
) (x
)\n"
2970 "#define
ntohs(x
) (x
)\n"
2971 "#define
htonl(x
) (x
)\n"
2972 "#define
htons(x
) (x
)\n"
2974 "#endif
/* ! _XOPEN_SOURCE_EXTENDED
*/";
2978 * These hacks are need in inttypes.h on 11.23 and in stdint.h on 11.31.
2981 hackname = hpux_imaginary_i;
2982 mach = "ia64
-hp
-hpux11.
*";
2984 select = "^
[ \t]*#
[ \t]*define
[ \t]*_Complex_I.
*";
2986 c_fix_arg = "#define
_Complex_I (__extension__
1.0iF
)";
2987 test_text = "#define
_Complex_I (0.f
+_Imaginary_I
)\n";
2991 * These hacks are need in inttypes.h on 11.23 and in stdint.h on 11.31.
2994 hackname = hpux_inttype_int8_t;
2995 mach = "*-hp
-hpux1
[01].
*";
2996 files = sys/_inttypes.h;
2997 select = "^
[ \t]*typedef
[ \t]*char
[ \t]*int(_least
){0,1}8_t.
*";
2999 c_fix_arg = "typedef signed char int
%18_t
;";
3000 test_text = "typedef char int_least8_t
;\n"
3001 "typedef char int8_t
;\n";
3008 hackname = hpux_long_double;
3009 mach = "*-*-hpux10
*";
3010 mach = "*-*-hpux11.
[012]*";
3012 select = "extern
[ \t]long_double
[ \t]strtold
";
3013 bypass = "long_double_t
";
3014 sed = "/^#
[ \t]*ifndef _LONG_DOUBLE
/,/\\/\\* _LONG_DOUBLE
\\*\\//D
";
3015 sed = "s
/long_double
/long double
/g
";
3017 test_text = "# ifndef _LONG_DOUBLE
\n"
3018 "# define _LONG_DOUBLE
\n"
3019 " typedef struct
{\n"
3020 " unsigned int word1
, word2
, word3
, word4
;\n"
3022 "# endif
/* _LONG_DOUBLE
*/\n"
3023 "extern long_double
strtold(const char
*, char
**)
;\n";
3027 * We cannot use the above rule on 11.31 because it removes the strtold
3028 * definition. ia64 is OK with no hack, PA needs some help.
3031 hackname = hpux_long_double_2;
3032 mach = "hppa
*-*-hpux11.3
*";
3034 select = "#
[ \t]*if
[ \t]*!defined
\\(__ia64
\\) \\|
\\|
"
3035 "defined
\\(_PROTOTYPES
\\) \\|
\\|
"
3036 "defined
\\(_LONG_DOUBLE_STRUCT
\\)";
3038 c_fix_arg = "# if
!defined(_PROTOTYPES
) ||
defined(_LONG_DOUBLE_STRUCT
)";
3040 test_text = "# if
!defined(__ia64
) ||
"
3041 "!defined(_PROTOTYPES
) ||
"
3042 "defined(_LONG_DOUBLE_STRUCT
)\n";
3046 * Add missing braces to pthread initializer defines.
3049 hackname = hpux_pthread_initializers;
3050 mach = "*-hp
-hpux11.
[0-3]*";
3051 files = sys/pthread.h;
3052 sed = "s@^
[ \t]*1, 1, 1, 1,[ \t]*\\\\"
3053 "@
\t{ 1, 1, 1, 1 },\t\t\t\t\t\t\t\\\\@
";
3054 sed = "s@^
[ \t]*1,[ \t]*\\\\"
3056 sed = "/^
[ \t]*0$
/d
";
3057 sed = "s@__PTHREAD_MUTEX_VALID
, 0"
3058 "@
{ __PTHREAD_MUTEX_VALID
, 0 }@
";
3059 sed = "s@^
[ \t]*0, 0, -1, 0,[ \t]*\\\\"
3060 "@
\t{ 0, 0, -1, 0 },\t\t\t\t\t\t\\\\@
";
3061 sed = "s@
0, __LWP_MTX_VALID
, 0, 1, 1, 1, 1,[ \t]*\\\\"
3062 "@
{ 0, __LWP_MTX_VALID
}, { 0, 1, 1, 1, 1 },\t\t\t\\\\@
";
3063 sed = "s@^
[ \t]*__LWP_MTX_VALID
, 0, 1, 1, 1, 1,[ \t]*\\\\"
3064 "@
\t{ 0, __LWP_MTX_VALID
}, { 0, 1, 1, 1, 1 },\t\t\t\\\\@
";
3065 sed = "s@^
[ \t]*0, 0[ \t]*\\\\"
3066 "@
\t{ 0, 0 }\t\t\t\t\t\t\t\\\\@
";
3067 sed = "s@__PTHREAD_COND_VALID
, 0"
3068 "@
{ __PTHREAD_COND_VALID
, 0 }@
";
3069 sed = "s@__LWP_COND_VALID
, 0,[ \t]*\\\\"
3070 "@
{ __LWP_COND_VALID
, 0 },\t\t\t\t\t\\\\@
";
3071 sed = "s@__PTHREAD_RWLOCK_VALID
, 0"
3072 "@
{ __PTHREAD_RWLOCK_VALID
, 0 }@
";
3073 sed = "s@__LWP_RWLOCK_VALID
, 0,[ \t]*\\\\"
3074 "@
{ __LWP_RWLOCK_VALID
, 0 },\t\t\t\t\t\\\\@
";
3075 sed = "s@^
[ \t]*0, 0, 0, 0, 0, 0, 0[ \t]*\\\\"
3076 "@
\t{ 0, 0, 0, 0, 0 }, { 0, 0}\t\t\t\t\t\\\\@
";
3077 test_text = "#define PTHREAD_MUTEX_INITIALIZER
{\t\t\t\t\t\\\\\n"
3078 "\t__PTHREAD_MUTEX_VALID
, 0,\t\t\t\t\t\\\\\n"
3079 "\t(PTHREAD_MUTEX_DEFAULT | PTHREAD_PROCESS_PRIVATE
),\t\t\\\\\n"
3080 "\t__SPNLCK_INITIALIZER
,\t\t\t\t\t\t\\\\\n"
3081 "\t0, 0, -1, 0,\t\t\t\t\t\t\t\\\\\n"
3082 "\t0, __LWP_MTX_VALID
, 0, 1, 1, 1, 1,\t\t\t\t\\\\\n"
3083 "\t0, 0\t\t\t\t\t\t\t\t\\\\\n"
3088 * Wrap spu_info in ifdef _KERNEL. GCC cannot handle an array of unknown
3089 * type and mpinfou is only defined when _KERNEL is set.
3092 hackname = hpux_spu_info;
3093 mach = "*-hp
-hpux
*";
3095 * It is tempting to omit the first "files
" entry. Do not.
3096 * The testing machinery will take the first "files
" entry as the name
3097 * of a test file to play with. It would be a nuisance to have a directory
3098 * with the name "*".
3100 files = "ia64
/sys
/getppdp.h
";
3101 files = "*/sys
/getppdp.h
";
3102 select = "^.
*extern.
*spu_info.
*";
3105 c_fix_arg = "#ifdef _KERNEL
\n%0\n#endif
";
3107 test_text = "extern union mpinfou spu_info
[];";
3111 * These hacks are need in inttypes.h on 11.23 and in stdint.h on 11.31.
3114 hackname = hpux_stdint_least_fast;
3115 mach = "*-hp
-hpux11.2
*";
3116 files = stdint-hpux11.h, stdint.h;
3118 "^
[ \t]*#
[ \t]*define
[ \t]+UINT_(LEAST|FAST
)64_MAX
[ \t]+ULLONG_MAX
";
3120 c-fix-arg = "# define UINT_
%164_MAX __UINT64_MAX__
";
3121 test-text = "# define UINT_FAST64_MAX ULLONG_MAX
\n"
3122 "# define UINT_LEAST64_MAX ULLONG_MAX
\n";
3126 * Add noreturn attribute to longjmp declarations in hpux <setjmp.h>
3129 hackname = hpux_longjmp;
3130 mach = "*-hp
-hpux
*";
3132 select = "^
[ \t]*extern
[ \t]+void
[ \t]+.
*longjmp
[ \t]*\
(__
\\(\\(.
*int
\\)\\)|
\\(.
*int
\\)|
\\(\\)\
)";
3135 c_fix_arg = "%0 __attribute__ ((__noreturn__
))";
3137 test_text = 'extern void longjmp __((jmp_buf, int));';
3141 * Fix hpux10.20 <sys/time.h> to avoid invalid forward decl
3144 hackname = hpux_systime;
3146 select = "^extern struct sigevent
;";
3149 c_fix_arg = "struct sigevent
;";
3151 test_text = 'extern struct sigevent;';
3155 * Fix glibc definition of HUGE_VAL in terms of hex floating point constant
3158 hackname = huge_val_hex;
3159 files = bits/huge_val.h, '*/bits/huge_val.h';
3160 select = "^#
[ \t]*define
[ \t]*HUGE_VAL
[ \t].
*0x1\\.0p.
*";
3161 bypass = "__builtin_huge_val
";
3164 c_fix_arg = "#define
HUGE_VAL (__builtin_huge_val())\n";
3166 test_text = "# define HUGE_VAL
\t(__extension__
0x1.0p2047
)";
3170 * Fix glibc definition of HUGE_VALF in terms of hex floating point constant
3173 hackname = huge_valf_hex;
3174 files = bits/huge_val.h, '*/bits/huge_val.h';
3175 select = "^#
[ \t]*define
[ \t]*HUGE_VALF
[ \t].
*0x1\\.0p.
*";
3176 bypass = "__builtin_huge_valf
";
3179 c_fix_arg = "#define
HUGE_VALF (__builtin_huge_valf())\n";
3181 test_text = "# define
HUGE_VALF (__extension__
0x1.0p255f
)";
3185 * Fix glibc definition of HUGE_VALL in terms of hex floating point constant
3188 hackname = huge_vall_hex;
3189 files = bits/huge_val.h, '*/bits/huge_val.h';
3190 select = "^#
[ \t]*define
[ \t]*HUGE_VALL
[ \t].
*0x1\\.0p.
*";
3191 bypass = "__builtin_huge_vall
";
3194 c_fix_arg = "#define
HUGE_VALL (__builtin_huge_vall())\n";
3196 test_text = "# define
HUGE_VALL (__extension__
0x1.0p32767L
)";
3200 * Fix return type of abort and free
3203 hackname = int_abort_free_and_exit;
3205 select = "int
[ \t]+(abort|free|exit
)[ \t]*\\(";
3206 bypass = "_CLASSIC_ANSI_TYPES
";
3209 c_fix_arg = "void
\t%1(";
3211 test_text = "extern int
abort(int
);\n"
3212 "extern int
free(void*)
;\n"
3213 "extern int
exit(void*)
;";
3217 * Fix various macros used to define ioctl numbers.
3218 * The traditional syntax was:
3220 * #define _IO(n, x) (('n'<<8)+x)
3221 * #define TIOCFOO _IO(T, 1)
3223 * but this does not work with the C standard, which disallows macro
3224 * expansion inside strings. We have to rewrite it thus:
3226 * #define _IO(n, x) ((n<<8)+x)
3227 * #define TIOCFOO _IO('T', 1)
3229 * The select expressions match too much, but the c_fix code is cautious.
3231 * _IO might be: _IO DESIO BSD43__IO with W, R, WR, C, ... suffixes.
3234 hackname = io_quotes_def;
3235 select = "define
[ \t]+[A
-Z0
-9_
]+IO
[A
-Z
]*\\([a
-zA
-Z
][,)]";
3236 c_fix = char_macro_def;
3239 "#define
BSD43__IOWR(n
, x
) (('n'<<8)+x
)\n"
3240 "#define
_IOWN(x
,y
,t
) (_IOC_IN|
(((t
)&_IOCPARM_MASK
)<<16)|
('x'<<8)|y
)\n"
3241 "#define
_IO(x
,y
) ('x'<<8|y
)";
3243 "#define
XX_IO(x
) ('x'<<8|
256)";
3247 * Fix the usage of the ioctl macro numbers.
3250 hackname = io_quotes_use;
3251 select = "define
[ \t]+[A
-Z0
-9_
]+[ \t]+[A
-Z0
-9_
]+IO
[A
-Z
]*[ \t]*"
3253 c_fix = char_macro_use;
3255 test_text = "#define TIOCFOO BSD43__IOWR(T, 1)\n"
3256 "#define TIOCFOO \\\\\n"
3257 "BSD43__IOWR(T, 1) /* Some are multi-line */";
3261 * Check for missing ';' in struct
3264 hackname = ip_missing_semi;
3265 files = netinet/ip.h;
3267 sed = "/^struct/,/^};/s/}$/};/";
3273 "}; /* mumbled struct */\n";
3277 * Non-traditional "const" declaration in Irix's limits.h.
3280 hackname
= irix_limits_const
;
3281 files
= fixinc
-test
-limits.h
, limits.h
;
3282 select
= "^extern const ";
3284 c_fix_arg
= "extern __const ";
3285 test_text
= "extern const char limit; /* test limits */";
3289 * IRIX
5.x
's stdio.h declares some functions that take a va_list as
3290 * taking char *. However, GCC uses void * for va_list, so
3291 * calling vfprintf with a va_list fails in C++. */
3293 hackname = irix_stdio_va_list;
3296 select = '/\
* va_list \
*/ char \
*';
3298 c_fix_arg = "__gnuc_va_list";
3300 "extern int printf( const char *, /* va_list */ char * );";
3304 * These files in Sun OS 4.x and ARM/RISCiX and BSD4.3
3305 * use / * * / to concatenate tokens.
3308 hackname = kandr_concat;
3309 files = "sparc/asm_linkage.h";
3310 files = "sun*/asm_linkage.h";
3311 files = "arm/as_support.h";
3312 files = "arm/mc_type.h";
3313 files = "arm/xcb.h";
3314 files = "dev/chardefmac.h";
3315 files = "dev/ps_irq.h";
3316 files = "dev/screen.h";
3317 files = "dev/scsi.h";
3318 files = "sys/tty.h";
3319 files = "Xm.acorn/XmP.h";
3320 files = bsd43/bsd43_.h;
3324 test_text = "#define __CONCAT__(a,b) a/**/b";
3328 * The /usr/include/sys/ucontext.h on ia64-*linux-gnu systems defines
3329 * an _SC_GR0_OFFSET macro using an idiom that isn't a compile time
3330 * constant on recent versions of g
++.
3333 hackname
= linux_ia64_ucontext
;
3334 files
= "sys/ucontext.h";
3335 mach
= "ia64-*-linux*";
3336 select
= '\(\(\(char \*\) &\(\(struct sigcontext \*\) 0\)'
3337 '->sc_gr\[0\]\) - \(char \*\) 0\)';
3339 c_fix_arg
= "__builtin_offsetof \(struct sigcontext, sc_gr[0]\)";
3340 test_text
= "# define _SC_GR0_OFFSET\t\\\\\n"
3341 "\t(((char *) &((struct sigcontext *) 0)->sc_gr[0]) - (char *) 0)\n";
3345 * Remove header file warning from sys
/time.h. Autoconf
's
3346 * AC_HEADER_TIME recommends to include both sys/time.h and time.h
3347 * which causes warning on LynxOS. Remove the warning.
3350 hackname = lynxos_no_warning_in_sys_time_h;
3352 select = "#warning[ \t]+Using <time.h> instead of <sys/time.h>";
3355 test_text = "#warning Using <time.h> instead of <sys/time.h>";
3359 * Add missing declaration for putenv.
3362 hackname = lynxos_missing_putenv;
3363 mach = '*-*-lynxos
*';
3365 bypass = 'putenv
[ \t]*\\(';
3366 select = "extern char \\*getenv[ \t]*_AP\\(\\(const char \\*\\)\\);";
3369 "extern int putenv _AP((char *));";
3370 c_fix_arg = "extern char \\*getenv[ \t]*_AP\\(\\(const char \\*\\)\\);";
3371 test_text = "extern char *getenv _AP((const char *));";
3375 * Fix BSD machine/ansi.h to use __builtin_va_list to define _BSD_VA_LIST_.
3377 * On NetBSD, machine is a symbolic link to an architecture specific
3378 * directory name, so we can't match a specific file name here.
3381 hackname
= machine_ansi_h_va_list
;
3382 select
= "define[ \t]+_BSD_VA_LIST_[ \t]";
3383 bypass
= '__builtin_va_list';
3386 c_fix_arg
= "%1__builtin_va_list";
3387 c_fix_arg
= "(define[ \t]+_BSD_VA_LIST_[ \t]+).*";
3389 test_text
= " # define _BSD_VA_LIST_\tchar**";
3393 * Fix non
-ansi machine name defines
3396 hackname
= machine_name
;
3397 c_test
= machine_name
;
3398 c_fix
= machine_name
;
3400 test_text
= "/* MACH_DIFF: */\n"
3401 "#if defined( i386 ) || defined( sparc ) || defined( vax ) || "
3402 "defined( linux ) || __has_include ( <linux.h> )"
3403 "\n/* no uniform test, so be careful :-) */";
3407 * Some math.h files define struct
exception (it
's in the System V
3408 * Interface Definition), which conflicts with the class exception defined
3409 * in the C++ file std/stdexcept.h. We redefine it to __math_exception.
3410 * This is not a great fix, but I haven't been able to think of anything
3414 hackname
= math_exception
;
3416 select
= "struct exception";
3417 bypass
= '__cplusplus';
3420 c_fix_arg
= "#ifdef __cplusplus\n"
3421 "#define exception __math_exception\n"
3424 c_fix_arg
= "#ifdef __cplusplus\n"
3425 "#undef exception\n"
3428 test_text
= "typedef struct exception t_math_exception;";
3432 * This looks pretty broken to me. ``dbl_max_def
'' will contain
3433 * "define DBL_MAX " at the start
, when what we really want is just
3434 * the value portion. Can
't figure out how to write a test case
3435 * for this either :-(
3438 hackname = math_huge_val_from_dbl_max;
3442 * IF HUGE_VAL is defined to be DBL_MAX *and* DBL_MAX is _not_ defined
3443 * in math.h, this fix applies.
3445 select = "define[ \t]+HUGE_VAL[ \t]+DBL_MAX";
3446 bypass = "define[ \t]+DBL_MAX";
3450 * See if we have a definition for DBL_MAX in float.h.
3451 * If we do, we will replace the one in math.h with that one.
3454 "\tdbl_max_def=`egrep 'define
[ \t]+DBL_MAX
[ \t]+.
*' float.h "
3455 "| sed 's
/.
*DBL_MAX
[ \t]*//' 2>/dev/null`\n\n"
3457 "\tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n"
3458 "\tthen sed -e '/define
[ \t]*HUGE_VAL
[ \t]*DBL_MAX
/"
3459 "s@DBL_MAX@
'\"$dbl_max_def@\"\n"
3464 "`echo '#define DBL_MAX
\t3.1415e+9 /* really big
*/' >> float.h`\n"
3465 "#define HUGE_VAL DBL_MAX";
3472 hackname = nested_auth_des;
3474 select = '(/\
*.
*rpc
/auth_des\.h
>.*)
/\
*';
3476 c_fix_arg = "%1*/ /*";
3477 test_text = "/*#include <rpc/auth_des.h> /* skip this */";
3481 * Some versions of NetBSD don't expect the C99 inline semantics.
3484 hackname
= netbsd_c99_inline_1
;
3485 mach
= "*-*-netbsd*";
3487 select
= "extern __inline int";
3490 c_fix_arg
= "extern\n"
3491 "#ifdef __GNUC_STDC_INLINE__\n"
3492 "__attribute__((__gnu_inline__))\n"
3496 test_text
= "extern __inline int\nsigaddset(sigset_t *set, int signo)\n{}";
3500 * netbsd_c99_inline_2
3503 hackname
= netbsd_c99_inline_2
;
3504 mach
= "*-*-netbsd*";
3506 select
= "#define _SIGINLINE extern __inline";
3509 c_fix_arg
= <<- _EOArg_
3510 #ifdef __GNUC_STDC_INLINE__
3511 #define _SIGINLINE extern
__attribute__((__gnu_inline__
)) __inline
3517 test_text
= "#define _SIGINLINE extern __inline";
3521 * NetBSD has a semicolon after the ending
'}' for some extern
"C".
3524 hackname
= netbsd_extra_semicolon
;
3525 mach
= "*-*-netbsd*";
3526 files
= sys
/cdefs.h
;
3527 select
= "#define[ \t]*__END_DECLS[ \t]*};";
3530 c_fix_arg
= "#define __END_DECLS }";
3532 test_text
= "#define __END_DECLS };";
3536 * newlib
's stdint.h has several failures to conform to C99. The fix
3537 * for these removed a comment that can be matched to identify unfixed
3541 hackname = newlib_stdint_1;
3542 files = stdint-newlib.h, stdint.h;
3543 select = "@todo - Add support for wint_t types";
3544 sed = "s@#define INT32_MIN.*@#define INT32_MIN (-INT32_MAX - 1)@";
3545 sed = "s@#define INT32_MAX.*@#define INT32_MAX __INT32_MAX__@";
3546 sed = "s@#define UINT32_MAX.*@#define UINT32_MAX __UINT32_MAX__@";
3547 sed = "s@#define INT_LEAST32_MIN.*@"
3548 "#define INT_LEAST32_MIN (-INT_LEAST32_MAX - 1)@";
3549 sed = "s@#define INT_LEAST32_MAX.*@"
3550 "#define INT_LEAST32_MAX __INT_LEAST32_MAX__@";
3551 sed = "s@#define UINT_LEAST32_MAX.*@"
3552 "#define UINT_LEAST32_MAX __UINT_LEAST32_MAX__@";
3553 sed = 's@#define INT_FAST\
([0-9]*\
)_MIN.
*@
'
3554 '#define INT_FAST\
1_MIN (-INT_FAST\
1_MAX
- 1)@
';
3555 sed = 's@#define INT_FAST\
([0-9]*\
)_MAX.
*@
'
3556 '#define INT_FAST\
1_MAX __INT_FAST\
1_MAX__@
';
3557 sed = 's@#define UINT_FAST\
([0-9]*\
)_MAX.
*@
'
3558 '#define UINT_FAST\
1_MAX __UINT_FAST\
1_MAX__@
';
3559 sed = "s@#define SIZE_MAX.*@#define SIZE_MAX __SIZE_MAX__@";
3560 sed = "s@#define PTRDIFF_MIN.*@#define PTRDIFF_MIN (-PTRDIFF_MAX - 1)@";
3561 sed = "s@#define PTRDIFF_MAX.*@#define PTRDIFF_MAX __PTRDIFF_MAX__@";
3562 sed = "s@#define UINT8_C.*@#define UINT8_C(c) __UINT8_C(c)@";
3563 sed = "s@#define UINT16_C.*@#define UINT16_C(c) __UINT16_C(c)@";
3564 test_text = "/* @todo - Add support for wint_t types. */\n"
3565 "#define INT32_MIN (-2147483647-1)\n"
3566 "#define INT32_MAX 2147483647\n"
3567 "#define UINT32_MAX 4294967295U\n"
3568 "#define INT_LEAST32_MIN (-2147483647-1)\n"
3569 "#define INT_LEAST32_MAX 2147483647\n"
3570 "#define UINT_LEAST32_MAX 4294967295U\n"
3571 "#define INT_FAST8_MIN INT8_MIN\n"
3572 "#define INT_FAST8_MAX INT8_MAX\n"
3573 "#define UINT_FAST8_MAX UINT8_MAX\n"
3574 "#define SIZE_MAX (__STDINT_EXP(LONG_MAX) * 2UL + 1)\n"
3575 "#define PTRDIFF_MIN (-__STDINT_EXP(LONG_MAX) - 1L)\n"
3576 "#define PTRDIFF_MAX __STDINT_EXP(LONG_MAX)\n"
3577 "#define UINT8_C(x) x##U\n"
3578 "#define UINT16_C(x) x##U";
3585 hackname = newlib_stdint_2;
3586 files = stdint-newlib.h, stdint.h;
3587 select = "@todo - Add support for wint_t types";
3589 c_fix_arg = "#define INTMAX_MAX __INTMAX_MAX__\n"
3590 "#define INTMAX_MIN (-INTMAX_MAX - 1)\n"
3591 "#define UINTMAX_MAX __UINTMAX_MAX__\n"
3592 "#define WCHAR_MAX __WCHAR_MAX__\n"
3593 "#define WCHAR_MIN __WCHAR_MIN__\n"
3594 "#define WINT_MAX __WINT_MAX__\n"
3595 "#define WINT_MIN __WINT_MIN__\n\n"
3597 c_fix_arg = '/\
*\
* Macros for minimum
-width integer constant expressions \
*/';
3598 test_text = "/* @todo - Add support for wint_t types. */\n"
3599 "/** Macros for minimum-width integer constant expressions */";
3603 * NeXT 3.2 adds const prefix to some math functions.
3604 * These conflict with the built-in functions.
3607 hackname = next_math_prefix;
3608 files = ansi/math.h;
3609 select = "^extern[ \t]+double[ \t]+__const__[ \t]";
3612 c_fix_arg = "extern double %1(";
3613 c_fix_arg = "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(";
3615 test_text = "extern\tdouble\t__const__\tmumble();";
3619 * NeXT 3.2 uses the word "template" as a parameter for some
3620 * functions. GCC reports an invalid use of a reserved key word
3621 * with the built-in functions.
3624 hackname = next_template;
3626 select = "[ \t]template\\)";
3630 c_fix_arg = "\\(([^)]*)[ \t]template\\)";
3631 test_text = "extern mumble( char * template); /* fix */";
3635 * NeXT 3.2 includes the keyword volatile in the abort() and exit()
3636 * function prototypes. That conflicts with the built-in functions.
3639 hackname = next_volitile;
3640 files = ansi/stdlib.h;
3641 select = "^extern[ \t]+volatile[ \t]+void[ \t]";
3644 c_fix_arg = "extern void %1(";
3645 c_fix_arg = "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(";
3647 test_text = "extern\tvolatile\tvoid\tabort();";
3651 * NeXT 2.0 defines 'int
wait(union wait*)
', which conflicts with Posix.1.
3652 * Note that version 3 of the NeXT system has wait.h in a different directory,
3653 * so that this code won't do anything. But wait.h in version
3 has a
3654 * conditional
, so it doesn
't need this fix. So everything is okay.
3657 hackname = next_wait_union;
3660 select = 'wait\
(union wait
';
3662 c_fix_arg = "wait(void";
3663 test_text = "extern pid_d wait(union wait*);";
3667 * a missing semi-colon at the end of the nodeent structure definition.
3670 hackname = nodeent_syntax;
3671 files = netdnet/dnetdb.h;
3672 select = "char[ \t]*\\*na_addr[ \t]*$";
3675 test_text = "char *na_addr\t";
3679 * Fix OpenBSD's NULL definition.
3682 hackname
= openbsd_null_definition
;
3683 mach
= "*-*-openbsd*";
3684 files
= locale.h
, stddef.h
, stdio.h
, string.h
,
3685 time.h
, unistd.h
, wchar.h
, sys
/param.h
;
3686 select
= "__GNUG__";
3688 c_fix_arg
= "#ifndef NULL\n"
3689 "#ifdef __cplusplus\n"
3691 "#define NULL\t__null\n"
3692 "#else\t /* ! __GNUG__ */\n"
3693 "#define NULL\t0L\n"
3694 "#endif\t /* __GNUG__ */\n"
3695 "#else\t /* ! __cplusplus */\n"
3696 "#define NULL\t((void *)0)\n"
3697 "#endif\t /* __cplusplus */\n"
3698 "#endif\t /* !NULL */";
3700 c_fix_arg
= "^#ifndef[ \t]*NULL\n"
3701 "^#ifdef[ \t]*__GNUG__\n"
3702 "^#define[ \t]*NULL[ \t]*__null\n"
3704 "^#define[ \t]*NULL[ \t]*0L\n"
3710 "#define NULL __null\n"
3718 * obstack.h used casts as lvalues.
3720 * We need to change postincrements of casted
pointers (which are
3721 * then dereferenced and assigned into
) of the form
3723 * *((TYPE*)PTRVAR
)++ = (VALUE
)
3725 * into expressions like
3727 * ((*((TYPE*)PTRVAR
) = (VALUE
)), (PTRVAR
+= sizeof (TYPE)))
3729 * which is correct for the cases used in obstack.h since PTRVAR is
3730 * of type char
* and the value of the expression is not used.
3733 hackname
= obstack_lvalue_cast
;
3735 select
= '\*\(\(([^()]*)\*\)(.*)\)\+\+ = \(([^()]*)\)';
3737 c_fix_arg
= "((*((%1*)%2) = (%3)), (%2 += sizeof (%1)))";
3738 test_text
= "*((void **) (h)->next_free)++ = (aptr)";
3742 * Fix OpenBSD
's va_start define.
3745 hackname = openbsd_va_start;
3746 mach = "*-*-openbsd*";
3748 select = '__builtin_stdarg_start
';
3750 c_fix_arg = __builtin_va_start;
3752 test_text = "#define va_start(v,l) __builtin_stdarg_start((v),l)";
3756 * sys/lc_core.h on some versions of OSF1/4.x pollutes the namespace by
3757 * defining regex.h related types. This causes libg++ build and usage
3758 * failures. Fixing this correctly requires checking and modifying 3 files.
3761 hackname = osf_namespace_a;
3762 files = reg_types.h;
3763 files = sys/lc_core.h;
3764 test = " -r reg_types.h";
3765 test = " -r sys/lc_core.h";
3766 test = " -n \"`grep '} regex_t
;' reg_types.h`\"";
3767 test = " -z \"`grep __regex_t regex.h`\"";
3771 c_fix_arg = "reg(ex|off|match)_t";
3773 test_text = "`touch sys/lc_core.h`"
3774 "typedef struct {\n int stuff, mo_suff;\n} regex_t;\n"
3775 "extern regex_t re;\n"
3776 "extern regoff_t ro;\n"
3777 "extern regmatch_t rm;\n";
3781 hackname = osf_namespace_c;
3783 test = " -r reg_types.h";
3784 test = " -r sys/lc_core.h";
3785 test = " -n \"`grep '} regex_t
;' reg_types.h`\"";
3786 test = " -z \"`grep __regex_t regex.h`\"";
3788 select = "#include <reg_types\.h>.*";
3791 "typedef __regex_t\tregex_t;\n"
3792 "typedef __regoff_t\tregoff_t;\n"
3793 "typedef __regmatch_t\tregmatch_t;";
3795 test_text = "#include <reg_types.h>";
3799 * On broken glibc-2.3.3 systems an array of incomplete structures is
3800 * passed to __sigsetjmp. Fix that to take a pointer instead.
3803 hackname = pthread_incomplete_struct_argument;
3805 select = "struct __jmp_buf_tag";
3807 c_fix_arg = "%1 *%2%3";
3808 c_fix_arg = "^(extern int __sigsetjmp \\(struct __jmp_buf_tag) "
3809 "(__env)\\[1\\](.*)$";
3810 test_text = "extern int __sigsetjmp (struct __jmp_buf_tag __env[1], "
3815 * Fix return type of fread and fwrite on sysV68
3818 hackname = read_ret_type;
3820 select = "extern int\t.*, fread\\(\\), fwrite\\(\\)";
3822 c_fix_arg = "extern unsigned int fread(), fwrite();\n%1%2";
3823 c_fix_arg = "(extern int\t.*), fread\\(\\), fwrite\\(\\)(.*)";
3825 test_text = "extern int\tfclose(), fflush(), fread(), fwrite(), foo();";
3829 * Fix casts as lvalues in glibc's
<rpc
/xdr.h
>.
3832 hackname
= rpc_xdr_lvalue_cast_a
;
3834 select
= "#define[ \t]*IXDR_GET_LONG.*\\\\\n.*__extension__.*";
3836 c_fix_arg
= "#define IXDR_GET_LONG(buf) ((long)IXDR_GET_U_INT32(buf))";
3837 test_text
= "#define IXDR_GET_LONG(buf) \\\\\n"
3838 "\t((long)ntohl((u_long)*__extension__((u_int32_t*)(buf))++))";
3842 * rpc_xdr_lvalue_cast_b
3845 hackname
= rpc_xdr_lvalue_cast_b
;
3847 select
= "#define[ \t]*IXDR_PUT_LONG.*\\\\\n.*__extension__.*";
3849 c_fix_arg
= "#define IXDR_PUT_LONG(buf, v) ((long)IXDR_PUT_INT32(buf, (long)(v)))";
3850 test_text
= "#define IXDR_PUT_LONG(buf, v) \\\\\n"
3851 "\t(*__extension__((u_int32_t*)(buf))++ = (long)htonl((u_long)(v)))";
3855 * function
class(double x
) conflicts with C
++ keyword on rs
/6000
3858 hackname
= rs6000_double
;
3860 select
= '[^a-zA-Z_]class\(';
3863 c_fix_arg
= "#ifndef __cplusplus\n%0\n#endif";
3864 c_fix_arg
= '^.*[^a-zA-Z_]class\(.*';
3866 test_text
= "extern int class();";
3870 * Wrong fchmod prototype on RS
/6000.
3873 hackname
= rs6000_fchmod
;
3875 select
= 'fchmod\(char \*';
3877 c_fix_arg
= "fchmod(int";
3878 test_text
= "extern int fchmod(char *, mode_t);";
3882 * parameters conflict with C
++ new on rs
/6000
3885 hackname
= rs6000_param
;
3889 select
= 'rename\(const char \*old, const char \*new\)';
3891 c_fix_arg
= 'rename(const char *_old, const char *_new)';
3893 test_text
= 'extern int rename(const char *old, const char *new);';
3897 * Solaris
10+ <sys
/feature_tests.h
> defines _RESTRICT_KYWD as restrict
3898 * for C99. This is wrong for C
++, which needs many C99 features
, but
3899 * only supports __restrict.
3902 hackname
= solaris___restrict
;
3903 files
= sys
/feature_tests.h
;
3904 select
= "#define[ \t]*_RESTRICT_KYWD[ \t]*restrict";
3905 mach
= "*-*-solaris2*";
3907 c_fix_arg
= "#ifdef __cplusplus\n#define\t_RESTRICT_KYWD\t__restrict\n"
3908 "#else\n%0\n#endif";
3909 test_text
= "#define _RESTRICT_KYWD restrict";
3913 * Solaris
10+ complex.h defines _Complex_I and _Imaginary_I in terms of
3914 * themselves
, which are Sun Studio compiler intrinsics. Remove _Imaginary_I
3915 * and imaginary definitions which are not supported by GCC.
3918 hackname
= solaris_complex
;
3919 mach
= "*-*-solaris2.*";
3921 select
= "#define[ \t]_Complex_I[ \t]_Complex_I";
3922 sed
= "s/#define[ \t]_Complex_I[ \t]_Complex_I/"
3923 "#define\t_Complex_I\t(__extension__ 1.0iF)/";
3924 sed
= "/#define[ \t]_Imaginary_I[ \t]_Imaginary_I/d";
3925 sed
= "/#define[ \t]imaginary[ \t]_Imaginary/d";
3926 sed
= "s/#define[ \t]I[ \t]\\{1,\\}_Imaginary_I/#define\tI\t\t_Complex_I/";
3927 test_text
= "#define _Complex_I _Complex_I\n"
3928 "#define complex _Complex\n"
3929 "#define _Imaginary_I _Imaginary_I\n"
3930 "#define imaginary _Imaginary\n"
3932 "#define I _Imaginary_I";
3936 * Solaris
10+ <complex.h
> is wrapped in #ifndef __cplusplus. Wrap in
3937 * extern
"C" instead so libstdc
++ can use it.
3940 hackname
= solaris_complex_cxx
;
3941 mach
= "*-*-solaris2.*";
3943 sed
= "/#if[ \t]*!defined(__cplusplus)/c\\\n"
3944 "#ifdef\t__cplusplus\\\nextern \"C\" {\\\n#endif";
3945 sed
= "/#endif[ \t]*\\/\\* !defined(__cplusplus) \\*\\//c\\\n"
3946 "#ifdef\t__cplusplus\\\n}\\\n#endif";
3947 test_text
= "#if !defined(__cplusplus)\n"
3948 "#endif /* !defined(__cplusplus) */";
3952 * g
++ rejects functions declared with both C and C
++ linkage.
3955 hackname
= solaris_cxx_linkage
;
3956 mach
= '*-*-solaris2*';
3957 files
= "iso/stdlib_iso.h";
3958 select
= "(#if __cplusplus >= 199711L)\n"
3959 "(extern \"C\\+\\+\" \\{\n)"
3960 "(.*(bsearch|qsort).*)";
3962 c_fix_arg
= "%1 && !__GNUG__\n%2%3";
3965 "#if __cplusplus >= 199711L\n"
3966 "extern \"C++\" {\n"
3967 " void *bsearch(const void *, const void *, size_t, size_t,";
3971 * Solaris
<iso
/stdio_iso.h
> doesn
't declare getc for C++ with
3972 * _STRICT_STDC, but uses it.
3975 hackname = solaris_getc_strict_stdc;
3976 mach = "*-*-solaris2*";
3977 files = "iso/stdio_iso.h";
3978 select = "(.*&& )!defined\\(_STRICT_STDC\\)(.*)";
3980 c_fix_arg = "%1(!defined(_STRICT_STDC) || (__cplusplus >= 199711L))%2";
3983 "#if !defined(_REENTRANT) && !defined(_LP64) && !defined(_STRICT_STDC)";
3987 * Solaris <iso/stdio_iso.h> should deprecate gets before C11.
3990 hackname = solaris_gets_c11;
3991 mach = "*-*-solaris2*";
3992 files = "iso/stdio_iso.h";
3993 select = "(extern char[ \t]*\\*gets\\(char \\*\\));";
3996 c_fix_arg = "#if __STDC_VERSION__ < 201112L && __cplusplus < 201402L\n"
3997 "%1 __attribute__((__deprecated__));\n"
4000 test_text = "extern char *gets(char *);";
4004 * Solaris <iso/stdio_iso.h> shouldn't declare gets for C
++14.
4007 hackname
= solaris_gets_cxx14
;
4008 mach
= "*-*-solaris2*";
4009 files
= "iso/stdio_iso.h";
4010 select
= <<- _EOSelect_
4011 (#if __STDC_VERSION__
< 201112L)
4012 (extern char \
*gets\
(char \
*\
) __ATTR_DEPRECATED
;)
4015 c_fix_arg
= "%1 && __cplusplus < 201402L\n%2";
4017 test_text
= <<- _EOText_
4018 #if __STDC_VERSION__
< 201112L
4019 extern char
*gets(char *) __ATTR_DEPRECATED
;
4024 * Sun Solaris
2 has a version of sys
/int_const.h that defines
4025 * UINT8_C and UINT16_C to unsigned constants.
4028 hackname
= solaris_int_const
;
4029 files
= sys
/int_const.h
;
4030 mach
= '*-*-solaris2*';
4032 c_fix_arg
= "#define\tUINT8_C(c)\t(c)\n"
4034 "#define\tUINT16_C(c)\t(c)";
4035 select
= "^#define[ \t]+UINT8_C\\(c\\)[ \t]+__CONCAT__.*\n"
4037 "#define[ \t]+UINT16_C\\(c\\)[ \t]+__CONCAT__.*";
4039 "#define UINT8_C(c) __CONCAT__(c,u)\n"
4041 "#define UINT16_C(c) __CONCAT__(c,u)";
4045 * Sun Solaris
2 has a version of sys
/int_limits.h that defines
4046 * UINT8_MAX and UINT16_MAX to unsigned constants.
4049 hackname
= solaris_int_limits_1
;
4050 files
= sys
/int_limits.h
;
4051 mach
= '*-*-solaris2*';
4053 c_fix_arg
= "#define\tUINT8_MAX\t(255)\n"
4054 "#define\tUINT16_MAX\t(65535)";
4055 select
= "^#define[ \t]+UINT8_MAX[ \t]+\\(255U\\)\n"
4056 "#define[ \t]+UINT16_MAX[ \t]+\\(65535U\\)";
4058 "#define UINT8_MAX (255U)\n"
4059 "#define UINT16_MAX (65535U)";
4063 * Sun Solaris
2 has a version of sys
/int_limits.h that defines
4064 * INT_FAST16 limits to wrong values for sys
/int_types.h.
4067 hackname
= solaris_int_limits_2
;
4068 files
= sys
/int_limits.h
;
4069 mach
= '*-*-solaris2*';
4071 c_fix_arg
= "#define\t%1_FAST16_%2 %132_%2";
4072 select
= "^#define[ \t]+(INT|UINT)_FAST16_(MAX|MIN)[ \t](INT|UINT)16.*";
4074 "#define INT_FAST16_MAX INT16_MAX\n"
4075 "#define UINT_FAST16_MAX UINT16_MAX\n"
4076 "#define INT_FAST16_MIN INT16_MIN";
4080 * Sun Solaris
2 has a version of sys
/int_limits.h that defines
4081 * SIZE_MAX as unsigned long.
4084 hackname
= solaris_int_limits_3
;
4085 files
= sys
/int_limits.h
;
4086 mach
= '*-*-solaris2*';
4088 c_fix_arg
= "#define\tSIZE_MAX\t4294967295U";
4089 select
= "^#define[ \t]+SIZE_MAX[ \t]+4294967295UL";
4091 "#define SIZE_MAX 4294967295UL";
4095 * Sun Solaris
10 defines several C99 math macros in terms of
4096 * builtins specific to the Studio compiler
, in particular not
4097 * compatible with the GNU compiler.
4100 hackname
= solaris_math_1
;
4101 select
= '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
4102 bypass
= "__GNUC__";
4103 files
= iso
/math_c99.h
;
4105 c_fix_arg
= "#define\tHUGE_VA%1\t(__builtin_huge_va%2())";
4106 c_fix_arg
= "^#define[ \t]+HUGE_VA([LF]+)[ \t]+__builtin_huge_va([lf]+)";
4108 '#ident "@(#)math_c99.h 1.9 04/11/01 SMI"'"\n"
4110 "#define HUGE_VAL __builtin_huge_val\n"
4111 "#undef HUGE_VALF\n"
4112 "#define HUGE_VALF __builtin_huge_valf\n"
4113 "#undef HUGE_VALL\n"
4114 "#define HUGE_VALL __builtin_huge_vall";
4118 * On Solaris
11, if you do
isinf(NaN
) you
'll get a floating point
4119 * exception. Provide an alternative using GCC's builtin.
4122 hackname
= solaris_math_10
;
4123 select
= '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
4124 files
= iso
/math_c99.h
;
4126 c_fix_arg
= "#define\tisinf(x) __builtin_isinf(x)";
4127 c_fix_arg
= "^#define[ \t]+isinf\\(x\\)[ \t]+__extension__\\([ \t]*\\\\\n"
4128 "[ \t]*\\{[ \t]*__typeof\\(x\\)[ \t]*__x_i[ \t]*=[ \t]*\\(x\\);"
4130 "[ \t]*__x_i[ \t]*==[ \t]*\\(__typeof\\(__x_i\\)\\)[ \t]*"
4131 "INFINITY[ \t]*\\|\\|[ \t]*\\\\\n"
4132 "[ \t]*__x_i[ \t]*==[ \t]*\\(__typeof\\(__x_i\\)\\)[ \t]*"
4133 "\\(-INFINITY\\);[ \t]*\\}\\)";
4135 '#pragma ident "@(#)math_c99.h 1.12 07/01/21 SMI"'"\n"
4137 "#define isinf(x) __extension__( \\\\\n"
4138 " { __typeof(x) __x_i = (x); \\\\\n"
4139 " __x_i == (__typeof(__x_i)) INFINITY || \\\\\n"
4140 " __x_i == (__typeof(__x_i)) (-INFINITY); })";
4144 * Solaris math INFINITY
4147 hackname
= solaris_math_2
;
4148 select
= '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
4149 bypass
= "__GNUC__";
4150 files
= iso
/math_c99.h
;
4152 c_fix_arg
= "#define\tINFINITY\t(__builtin_inff())";
4153 c_fix_arg
= "^#define[ \t]+INFINITY[ \t]+__builtin_infinity";
4155 '#ident "@(#)math_c99.h 1.9 04/11/01 SMI"'"\n"
4157 "#define INFINITY __builtin_infinity";
4164 hackname
= solaris_math_3
;
4165 select
= '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
4166 bypass
= "__GNUC__";
4167 files
= iso
/math_c99.h
;
4169 c_fix_arg
= "#define\tNAN\t\t(__builtin_nanf(\"\"))";
4170 c_fix_arg
= "^#define[ \t]+NAN[ \t]+__builtin_nan";
4172 '#ident "@(#)math_c99.h 1.9 04/11/01 SMI"'"\n"
4174 "#define NAN __builtin_nan";
4178 * Solaris math fpclassify
4181 hackname
= solaris_math_4
;
4182 select
= '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
4183 bypass
= "__GNUC__";
4184 files
= iso
/math_c99.h
;
4186 c_fix_arg
= "#define\tfpclassify(x) \\\n"
4187 " __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, "
4188 "FP_SUBNORMAL, FP_ZERO, (x))";
4189 c_fix_arg
= "^#define[ \t]+fpclassify\\(x\\)[ \t]+__builtin_fpclassify\\(x\\)";
4191 '#ident "@(#)math_c99.h 1.9 04/11/01 SMI"'"\n"
4192 "#undef fpclassify\n"
4193 "#define fpclassify(x) __builtin_fpclassify(x)";
4197 * Solaris math signbit
4200 hackname
= solaris_math_8
;
4201 select
= '@\(#\)math_c99\.h' "[ \t]+1\\.[0-9]+[ \t]+[0-9/]+ SMI";
4202 bypass
= "__GNUC__";
4203 files
= iso
/math_c99.h
;
4205 c_fix_arg
= "#define\tsignbit(x)\t(sizeof(x) == sizeof(float) \\\n"
4206 "\t\t\t ? __builtin_signbitf(x) \\\n"
4207 "\t\t\t : sizeof(x) == sizeof(long double) \\\n"
4208 "\t\t\t ? __builtin_signbitl(x) \\\n"
4209 "\t\t\t : __builtin_signbit(x))";
4210 c_fix_arg
= "^#define[ \t]+signbit\\(x\\)[ \t]+__builtin_signbit\\(x\\)";
4211 test_text
= <<- _EOText_
4212 #ident
"@(#)math_c99.h 1.9 04/11/01 SMI"
4214 #define
signbit(x
) __builtin_signbit(x
)
4219 * Solaris math comparison macros
4222 hackname
= solaris_math_9
;
4223 select
= '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
4224 bypass
= "__GNUC__";
4225 files
= iso
/math_c99.h
;
4227 c_fix_arg
= "#define\t%1(x, y)%2__builtin_%1(x, y)";
4228 c_fix_arg
= "^#define[ \t]+([a-z]+)\\(x, y\\)([ \t]+)\\(\\(x\\) "
4229 "__builtin_[a-z]+\\(y\\)\\)";
4231 '#ident "@(#)math_c99.h 1.9 04/11/01 SMI"'"\n"
4232 "#undef isgreater\n"
4233 "#define isgreater(x, y) ((x) __builtin_isgreater(y))\n"
4234 "#undef isgreaterequal\n"
4235 "#define isgreaterequal(x, y) ((x) __builtin_isgreaterequal(y))\n"
4237 "#define isless(x, y) ((x) __builtin_isless(y))\n"
4238 "#undef islessequal\n"
4239 "#define islessequal(x, y) ((x) __builtin_islessequal(y))\n"
4240 "#undef islessgreater\n"
4241 "#define islessgreater(x, y) ((x) __builtin_islessgreater(y))\n"
4242 "#undef isunordered\n"
4243 "#define isunordered(x, y) ((x) __builtin_isunordered(y))";
4247 * Newer Solaris
10/11 GCC signbit implementations cause strict
-aliasing
4251 hackname
= solaris_math_11
;
4252 select
= '@\(#\)math_c99\.h' "[ \t]+1\\.[0-9]+[ \t]+[0-9/]+ ";
4253 files
= iso
/math_c99.h
;
4255 c_fix_arg
= << _EOArg_
4257 #define
signbit(x
) (sizeof(x
) == sizeof(float
) \
4258 ?
__builtin_signbitf(x
) \
4259 : sizeof(x
) == sizeof(long double
) \
4260 ?
__builtin_signbitl(x
) \
4261 : __builtin_signbit(x
))
4263 c_fix_arg
= << _EOArg_
4265 #if defined\
(__sparc\
)
4266 #define
[ ]+signbit\
(x\
)[ ]+__extension__\
( \\
4267 [ ]+\
{[ ]*__typeof\
(x\
)[ ]*__x_s
[ ]*=[ ]*\
(x\
);[ ]*\\
4268 [ ]+\
(int\
)[ ]*\
(\
*\
(unsigned
[ ]*\
*\
)[ ]*\
&__x_s
[ ]*>>[ ]*31\
);[ ]*\
}\
)
4269 #elif defined\
(__i386\
) \|\| defined\
(__amd64\
)
4270 #define
[ ]+signbit\
(x\
)[ ]+__extension__\
( \\
4271 [ ]+\
{ __typeof\
(x\
) __x_s
= \
(x\
); \\
4272 [ ]+\
(sizeof \
(__x_s\
) == sizeof \
(float\
) \? \\
4273 [ ]+\
(int\
) \
(\
*\
(unsigned \
*\
) \
&__x_s
>> 31\
) : \\
4274 [ ]+sizeof \
(__x_s\
) == sizeof \
(double\
) \? \\
4275 [ ]+\
(int\
) \
(\
(\
(unsigned \
*\
) \
&__x_s\
)\
[1\
] >> 31\
) : \\
4276 [ ]+\
(int\
) \
(\
(\
(unsigned short \
*\
) \
&__x_s\
)\
[4\
] >> 15\
)\
); \
}\
)
4279 test_text
= << _EOText_
4280 /* @
(#
)math_c99.h
1.14 13/03/27 */
4282 #if
defined(__sparc
)
4283 #define
signbit(x
) __extension__( \\
4284 { __typeof(x
) __x_s
= (x
); \\
4285 (int
) (*(unsigned *) &__x_s
>> 31); })
4286 #elif
defined(__i386
) ||
defined(__amd64
)
4287 #define
signbit(x
) __extension__( \\
4288 { __typeof(x
) __x_s
= (x
); \\
4289 (sizeof (__x_s
) == sizeof (float
) ?
\\
4290 (int
) (*(unsigned *) &__x_s
>> 31) : \\
4291 sizeof (__x_s
) == sizeof (double
) ?
\\
4292 (int
) (((unsigned *)
&__x_s
)[1] >> 31) : \\
4293 (int
) (((unsigned short *)
&__x_s
)[4] >> 15)); })
4299 * Some versions of Solaris
10+ <math.h
> #undef libstdc
++-internal macros.
4302 hackname
= solaris_math_12
;
4304 mach
= '*-*-solaris2*';
4305 select
= '#undef.*_GLIBCXX_USE_C99_MATH';
4306 bypass
= '__MATH_PREEMPTS_GLIBCXX_C99_MATH';
4307 sed
= "/#undef[ \t]*_GLIBCXX_USE_C99_MATH/d";
4308 test_text
= << _EOText_
4309 #if __cplusplus
>= 201103L
4310 #undef _GLIBCXX_USE_C99_MATH
4311 #undef _GLIBCXX_USE_C99_MATH_TR1
4317 * Sun Solaris defines PTHREAD_ONCE_INIT as an array containing a
4318 * structure. As such
, it need two levels of brackets
, but only
4319 * contains one. Wrap the macro definition in an extra layer.
4322 hackname
= solaris_once_init_1
;
4323 select
= '@\(#\)pthread.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
4325 mach
= '*-*-solaris*';
4327 c_fix_arg
= "%1{%2}%3";
4328 c_fix_arg
= "(^#define[ \t]+PTHREAD_ONCE_INIT[ \t]+\\{)([^}]+)(\\})[ \t]*$";
4330 '#pragma ident "@(#)pthread.h 1.37 04/09/28 SMI"'"\n"
4331 "#define PTHREAD_ONCE_INIT\t{0, 0, 0, PTHREAD_ONCE_NOTDONE}";
4335 * Solaris
10+ <spawn.h
> uses char
*const argv
[_RESTRICT_KYWD
] in the
4336 * posix_spawn declarations
, which doesn
't work with C++.
4339 hackname = solaris_posix_spawn_restrict;
4341 mach = '*-*-solaris2
*';
4343 c_fix_arg = "%1*_RESTRICT_KYWD %2%3";
4344 select = "(.*[ \t]+)([a-z]+)\\[_RESTRICT_KYWD\\](.*)";
4346 "char *const argv[_RESTRICT_KYWD],\n"
4347 "char *const envp[_RESTRICT_KYWD]);";
4351 * The pow overloads with int were removed in C++ 2011 DR 550.
4354 hackname = solaris_pow_int_overload;
4355 mach = '*-*-solaris2
*';
4356 files = "iso/math_iso.h";
4357 select = "^[ \t]*inline [a-z ]* pow\\([^()]*, int [^()]*\\)"
4358 " *\\{[^{}]*\n[^{}]*\\}";
4360 c_fix_arg = "#if __cplusplus < 201103L\n%0\n#endif";
4363 " inline long double pow(long double __X, int __Y) { return\n"
4364 " __powl(__X, (long double) (__Y)); }";
4368 * Sun Solaris defines PTHREAD_RWLOCK_INITIALIZER with a "0" for some
4369 * fields of the pthread_rwlock_t structure, which are of type
4370 * upad64_t, which itself is typedef'd to int64_t
, but with __STDC__
4371 * defined (e.g. by
-ansi
) it is a union. So change the initializer
4375 hackname
= solaris_rwlock_init_1
;
4376 select
= '@\(#\)pthread.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
4378 mach
= '*-*-solaris*';
4380 c_fix_arg
= "#if __STDC__ - 0 == 0 && !defined(_NO_LONGLONG)\n"
4383 "%1{0, 0, 0, {{0}, {0}, {0}}, {{0}, {0}}, {{0}, {0}}}\n"
4385 c_fix_arg
= "(^#define[ \t]+PTHREAD_RWLOCK_INITIALIZER[ \t]+)"
4386 "\\{0, 0, 0, \\{0, 0, 0\\}, \\{0, 0\\}, \\{0, 0\\}\\}[ \t]*$";
4389 '#ident "@(#)pthread.h 1.26 98/04/12 SMI"'"\n"
4390 "#define PTHREAD_RWLOCK_INITIALIZER\t{0, 0, 0, {0, 0, 0}, {0, 0}, {0, 0}}";
4394 * Before Solaris
10, <stdio.h
> lacks declarations of std
::__filbuf and
4395 * std
::__flsbuf
, but
<iso
/stdio_iso.h
> uses them.
4398 hackname
= solaris_std___filbuf
;
4400 mach
= '*-*-solaris2*';
4401 bypass
= "using std::__filbuf";
4402 select
= "(using std::perror;\n)(#endif)";
4404 c_fix_arg
= "%1#ifndef _LP64\n"
4405 "using std::__filbuf;\n"
4406 "using std::__flsbuf;\n"
4409 test_text
= "using std::perror;\n"
4414 * Solaris
<stdio.h
> shouldn
't use std::gets for C++14.
4417 hackname = solaris_std_gets_cxx14;
4418 mach = "*-*-solaris2*";
4420 select = "using std::gets;";
4423 c_fix_arg = "#if __cplusplus < 201402L\n%0\n#endif";
4425 test_text = "using std::gets;";
4429 * Sun Solaris 8 has what appears to be some gross workaround for
4430 * some old version of their c++ compiler. G++ doesn't want it
4431 * either
, but doesn
't want to be tied to SunPRO version numbers.
4434 hackname = solaris_stdio_tag;
4435 files = stdio_tag.h;
4437 select = '__cplusplus
< 54321L';
4438 /* In Solaris 10, the code in stdio_tag.h is conditionalized on
4439 "!defined(__GNUC__)" so we no longer need to fix it. */
4440 bypass = '__GNUC__
';
4441 sed = 's
/defined(__cplusplus
) && (__cplusplus
< 54321L)/0/';
4443 test_text = "#if\tdefined(__cplusplus) && (__cplusplus < 54321L)";
4447 * Solaris <stdlib.h> shouldn't use _Noreturn
, breaks with C
++.
4450 hackname
= solaris_stdlib_noreturn
;
4451 mach
= "*-*-solaris2*";
4452 files
= "iso/stdlib_c99.h";
4453 select
= "(extern) _Noreturn (void quick_exit\\(int\\));";
4456 c_fix_arg
= "%1 %2 __attribute__((__noreturn__));";
4458 test_text
= "extern _Noreturn void quick_exit(int);";
4462 * a missing semi
-colon at the end of the statsswtch structure definition.
4465 hackname
= statsswtch
;
4466 files
= rpcsvc
/rstat.h
;
4467 select
= "boottime$";
4469 c_fix_arg
= "boottime;";
4470 test_text
= "struct statswtch {\n int boottime\n};";
4474 * Arrange for stdio.h to use stdarg.h to define __gnuc_va_list.
4475 * On
4BSD
-derived systems
, stdio.h defers to machine
/ansi.h
; that
's
4479 hackname = stdio_stdarg_h;
4481 bypass = "include.*(stdarg\.h|machine/ansi\.h)";
4483 * On Solaris 10, this fix is unncessary; <stdio.h> includes
4484 * <iso/stdio_iso.h>, which includes <sys/va_list.h>.
4486 mach = '*-*-solaris2.1
[0-9]*';
4491 c_fix_arg = "#define __need___va_list\n#include <stdarg.h>\n";
4497 * Don't use or define the name va_list in stdio.h. This is for
4498 * ANSI. Note _BSD_VA_LIST_ is dealt with elsewhere. The presence
4499 * of __gnuc_va_list
, __DJ_va_list
, or _G_va_list is taken to
4500 * indicate that the header knows what it
's doing -- under SUSv2,
4501 * stdio.h is required to define va_list, and we shouldn't break
4505 hackname
= stdio_va_list
;
4507 bypass
= '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list|_G_va_list';
4509 * On Solaris
10, the definition in
4510 * <stdio.h
> is guarded appropriately by the _XPG4 feature macro
;
4511 * there is therefore no need for this fix there.
4513 mach
= '*-*-solaris2.1[0-9]*';
4517 * Use __gnuc_va_list in arg types in place of va_list.
4518 * On
386BSD use __gnuc_va_list instead of _VA_LIST_. On Tru64 UNIX V5.1A
4519 * use __gnuc_va_list instead of __VA_LIST__. We
're hoping the
4520 * trailing parentheses and semicolon save all other systems from this.
4521 * Define __not_va_list__ (something harmless and unused)
4522 * instead of va_list.
4523 * Don't claim to have defined va_list.
4525 sed
= "s@[ \t]va_list\\([ \t)]\\)@ __gnuc_va_list\\1@\n"
4526 "s@(va_list)&@(__gnuc_va_list)\\&@\n"
4527 "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
4528 "s@ __VA_LIST__));@ __gnuc_va_list));@\n"
4529 "s@ va_list@ __not_va_list__@\n"
4530 "s@\\*va_list@*__not_va_list__@\n"
4531 "s@ __va_list)@ __gnuc_va_list)@\n"
4532 "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
4533 "@typedef \\1 __not_va_list__;@\n"
4534 "s@typedef[ \t]*__va_list__@typedef __gnuc_va_list@\n"
4535 "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
4536 "s@_VA_LIST_DEFINED@_Va_LIST_DEFINED@\n"
4537 "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
4538 "s@VA_LIST@DUMMY_VA_LIST@\n"
4539 "s@_Va_LIST@_VA_LIST@";
4540 test_text
= "extern void mumble( va_list);";
4544 * Fix headers that use va_list from stdio.h to use the updated
4545 * va_list from the stdio_va_list change. Note _BSD_VA_LIST_ is
4546 * dealt with elsewhere. The presence of __gnuc_va_list
,
4547 * __DJ_va_list
, or _G_va_list is taken to indicate that the header
4548 * knows what it
's doing.
4551 hackname = stdio_va_list_clients;
4559 files = curses_colr/curses.h;
4560 bypass = '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list|_G_va_list
';
4561 /* Don't fix
, if we use va_list from stdarg.h
, or if the use is
4562 otherwise protected.
*/
4563 bypass
= 'include <stdarg\.h>|#ifdef va_start';
4566 * Use __gnuc_va_list in arg types in place of va_list.
4567 * On
386BSD use __gnuc_va_list instead of _VA_LIST_. On Tru64 UNIX V5.1A
4568 * use __gnuc_va_list instead of __VA_LIST__. We
're hoping the
4569 * trailing parentheses and semicolon save all other systems from this.
4570 * Define __not_va_list__ (something harmless and unused)
4571 * instead of va_list.
4572 * Don't claim to have defined va_list.
4574 sed
= "s@[ \t]va_list\\([ \t)]\\)@ __gnuc_va_list\\1@\n"
4575 "s@(va_list)&@(__gnuc_va_list)\\&@\n"
4576 "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
4577 "s@ __VA_LIST__));@ __gnuc_va_list));@\n"
4578 "s@ va_list@ __not_va_list__@\n"
4579 "s@\\*va_list@*__not_va_list__@\n"
4580 "s@ __va_list)@ __gnuc_va_list)@\n"
4581 "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
4582 "@typedef \\1 __not_va_list__;@\n"
4583 "s@typedef[ \t]*__va_list__@typedef __gnuc_va_list@\n"
4584 "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
4585 "s@_VA_LIST_DEFINED@_Va_LIST_DEFINED@\n"
4586 "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
4587 "s@VA_LIST@DUMMY_VA_LIST@\n"
4588 "s@_Va_LIST@_VA_LIST@";
4589 test_text
= "extern void mumble( va_list);";
4593 * "!__STDC__" or
"__STDC__==0" or
"__STDC__!=1" or
"__STDC__-0==0"
4594 * is
"!defined( __STRICT_ANSI__ )"
4597 hackname
= strict_ansi_not
;
4598 select
= "^([ \t]*#[ \t]*if.*)"
4600 "|__STDC__[ \t]*==[ \t]*0"
4601 "|__STDC__[ \t]*!=[ \t]*1"
4602 "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*0)";
4603 /* Tru64 UNIX V4.0F
/V5.1
<standards.h
> supports GCC usage of __STDC__.
*/
4604 bypass
= 'GNU and MIPS C compilers define __STDC__ differently';
4605 /* GNU gmp.h uses
"__STDC__ != 1" only if __SCO_VERSION__
, which
4606 is not defined by GCC
, so it is safe.
*/
4607 bypass
= '__SCO_VERSION__.*__STDC__ != 1';
4608 c_test
= stdc_0_in_system_headers
;
4611 c_fix_arg
= "%1 !defined(__STRICT_ANSI__)";
4613 test_text
= "#if !__STDC__ \n"
4614 "#if __STDC__ == 0\n"
4615 "#if __STDC__ != 1\n"
4616 "#if __STDC__ - 0 == 0"
4617 "/* not std C */\nint foo;\n"
4618 "\n#end-end-end-end-if :-)";
4623 * is
"!defined( __STRICT_ANSI__ )" on continued #if
-s
4626 hackname
= strict_ansi_not_ctd
;
4627 files
= math.h
, limits.h
, stdio.h
, signal.h
,
4628 stdlib.h
, sys
/signal.h
, time.h
;
4630 * Starting at the beginning of a line
, skip white space and
4631 * a leading
"(" or
"&&" or
"||". One of those must be found.
4632 * Then
, zero
, one or more copies of a
"defined(_FOO_BAR_) &&"
4633 * expression. If these are nested
, then they must accumulate
4634 * because we won
't match any closing parentheses. Finally,
4635 * after skipping over all that, we must then match our suspect
4636 * phrase: "__STDC__-0==0" with or without white space.
4638 select = "^([ \t]*" '(\
(|
&&|\|\|
)'
4639 "([ \t(]*!*[ \t]*defined\\([a-zA-Z_0-9]+\\)[ \t]*[|&][|&])*"
4641 "(__STDC__[ \t]*(|-[ \t]*0[ \t]*)==[ \t]*0)";
4642 c_test = stdc_0_in_system_headers;
4645 c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
4647 test_text = "#if 1 && \\\\\n"
4648 "&& defined(mumbling) |& (__STDC__ - 0 == 0) \\\\\n"
4649 "( __STDC__ == 0 && !defined(_XOPEN_SOURCE) \\\\\n"
4650 "|| __STDC__ - 0 == 0 ) /* not std C */\n"
4655 * "__STDC__!=0" or "__STDC__==1" or "__STDC__-0==1"
4656 * is "defined( __STRICT_ANSI__ )"
4659 hackname = strict_ansi_only;
4660 select = "^([ \t]*#[ \t]*if.*)"
4661 "(__STDC__[ \t]*!=[ \t]*0"
4662 "|__STDC__[ \t]*==[ \t]*1"
4663 "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*1"
4664 "|__STDC__[ \t]*-[ \t]*0[ \t]*!=[ \t]*0)";
4665 c_test = stdc_0_in_system_headers;
4668 c_fix_arg = "%1 defined(__STRICT_ANSI__)";
4670 test_text = "#if __STDC__ == 1 /* is std C\n */\nint foo;\n#endif";
4674 * IRIX 4.0.5 <rpc/xdr.h> uses struct __file_s
4675 * in prototype without previous definition.
4678 hackname = struct_file;
4680 select = '^.
*xdrstdio_create.
*struct __file_s
';
4682 c_fix_arg = "struct __file_s;\n%0";
4683 test_text = "extern void xdrstdio_create( struct __file_s* );";
4687 * IRIX 4.0.5 <rpc/auth.h> uses struct sockaddr
4688 * in prototype without previous definition.
4690 * Don't fix OpenBSD
, which uses struct sockaddr_in prototyping the same
4691 * function
, and does define it.
4694 hackname
= struct_sockaddr
;
4696 select
= "^.*authdes_create.*struct sockaddr[^_]";
4697 bypass
= "<sys/socket\.h>";
4698 bypass
= "struct sockaddr;\n";
4700 c_fix_arg
= "struct sockaddr;\n%0";
4701 test_text
= "extern AUTH* authdes_create( struct sockaddr* );";
4705 * Apply fix this to all OSs since this problem seems to effect
4706 * more than just SunOS.
4709 hackname
= sun_auth_proto
;
4714 bypass
= "__cplusplus";
4716 * Select those files containing
'(*name)()'.
4718 select
= '\(\*[a-z][a-z_]*\)\(\)';
4721 c_fix_arg
= "#ifdef __cplusplus\n%1(...);%2\n"
4722 "#else\n%1();%2\n#endif";
4723 c_fix_arg
= '(.*\(\*[a-z][a-z_]*\))\(\);(.*)';
4727 " int (*name)(); /* C++ bad */\n"
4732 * Fix bogus #ifdef on SunOS
4.1.
4735 hackname
= sun_bogus_ifdef
;
4736 files
= "hsfs/hsfs_spec.h";
4737 files
= "hsfs/iso_spec.h";
4738 select
= '#ifdef(.*\|\|.*)';
4740 c_fix_arg
= "#if%1";
4742 test_text
= "#ifdef __i386__ || __vax__ || __sun4c__";
4746 * Fix the CAT macro in SunOS memvar.h.
4749 hackname
= sun_catmacro
;
4750 files
= pixrect
/memvar.h
;
4751 select
= "^#define[ \t]+CAT\\(a,b\\).*";
4756 "# define CAT(a,b) a##b\n"
4757 "#else\n%0\n#endif";
4760 "#define CAT(a,b)\ta/**/b";
4764 * Fix return type of free and
{c
,m
,re
}alloc in
<malloc.h
> on SunOS
4.1.
4765 * Also fix return type of
{m
,re
}alloc in
<malloc.h
> on sysV68
4768 hackname
= sun_malloc
;
4770 bypass
= "_CLASSIC_ANSI_TYPES";
4772 sed
= "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g";
4773 sed
= "s/int[ \t][ \t]*free/void\tfree/g";
4774 sed
= "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g";
4775 sed
= "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g";
4776 sed
= "s/char\\([ \t]*\\*[ \t]*calloc\\)/void\\1/g";
4779 "typedef char *\tmalloc_t;\n"
4781 "char*\tmalloc();\n"
4782 "char*\tcalloc();\n"
4783 "char*\trealloc();";
4787 * Check for yet more missing
';' in
struct (in SunOS
4.0.x
)
4790 hackname
= sun_rusers_semi
;
4791 files
= rpcsvc
/rusers.h
;
4793 sed
= "/^struct/,/^};/s/_cnt$/_cnt;/";
4794 test_text
= "struct mumble\n int _cnt\n};";
4798 * signal.h on SunOS defines signal
using (),
4799 * which causes trouble when compiling with g
++ -pedantic.
4802 hackname
= sun_signal
;
4803 files
= sys
/signal.h
;
4805 select
= "^void\t" '\(\*signal\(\)\)\(\);.*';
4809 "#ifdef __cplusplus\n"
4810 "void\t(*signal(...))(...);\n"
4811 "#else\n%0\n#endif";
4813 test_text
= "void\t(*signal())();";
4817 * Correct the return type for strlen in strings.h in SunOS
4.
4820 hackname
= sunos_strlen
;
4822 select
= "int[ \t]*strlen\\(\\);(.*)";
4824 c_fix_arg
= "__SIZE_TYPE__ strlen();%1";
4825 test_text
= " int\tstrlen(); /* string length */";
4829 * Linux kernel
's vt.h breaks C++
4832 hackname = suse_linux_vt_cxx;
4835 select = "^[ \t]*unsigned int new;";
4837 c_fix_arg = "unsigned int newev;";
4839 test_text = " unsigned int new; /* New console (if changing) */";
4843 * Disable apparent native compiler optimization cruft in SVR4.2 <string.h>
4844 * that is visible to any ANSI compiler using this include. Simply
4845 * delete the lines that #define some string functions to internal forms.
4848 hackname = svr4_disable_opt;
4850 select = '#define.
*__std_hdr_
';
4851 sed = '/#define.
*__std_hdr_
/d
';
4852 test_text = "#define strlen __std_hdr_strlen\n";
4856 * Fix broken decl of getcwd present on some svr4 systems.
4859 hackname = svr4_getcwd;
4862 files = prototypes.h;
4863 select = 'getcwd\
(char \
*, int\
)';
4866 c_fix_arg = "getcwd(char *, size_t)";
4868 test_text = "extern char* getcwd(char *, int);";
4872 * Fix broken decl of profil present on some svr4 systems.
4875 hackname = svr4_profil;
4880 'profil\
(unsigned short \
*, unsigned int
, unsigned int
, unsigned int\
)';
4882 c_fix_arg = 'profil(unsigned short
*, size_t
, int
, unsigned int
)';
4885 'profil(unsigned short
*, unsigned int
, unsigned int
, unsigned int
);';
4889 * Correct types for signal handler constants like SIG_DFL; they might be
4890 * void (*) (), and should be void (*) (int). C++ doesn't like the
4894 hackname
= svr4_sighandler_type
;
4895 files
= sys
/signal.h
;
4896 select
= 'void *\(\*\)\(\)';
4898 c_fix_arg
= "void (*)(int)";
4899 test_text
= "#define SIG_DFL (void(*)())0\n"
4900 "#define SIG_IGN (void (*)())0\n";
4904 * Some SysV r4 systems
, including Sequent
's DYNIX/ptx, use the local
4905 * function 'getrnge
' in <regexp.h> before they declare it. For these
4906 * systems add a 'static int
' declaration of 'getrnge
' into <regexp.h>
4909 * 'getrnge
' traditionally manipulates a file-scope global called 'size
',
4910 * so put the declaration right after the declaration of 'size
'.
4912 * Don't do this if there is already a `static void getrnge
' declaration
4913 * present, since this would cause a redeclaration error. Solaris 2.x has
4914 * such a declaration.
4917 hackname = svr4_undeclared_getrnge;
4920 bypass = "static void getrnge";
4923 "static int getrnge ();";
4924 c_fix_arg = "^static int[ \t]+size;";
4925 test_text = "static int size;\n"
4926 "/* stuff which calls getrnge() */\n"
4927 "static getrnge()\n"
4932 * Fix return value of mem{ccpy,chr,cpy,set} and str{len,spn,cspn}
4933 * in string.h on sysV68
4934 * Correct the return type for strlen in string.h on Lynx.
4935 * Correct the argument type for ffs in string.h on Alpha OSF/1 V2.0.
4936 * Add missing const for strdup on OSF/1 V3.0.
4937 * On sysV88 layout is slightly different.
4940 hackname = sysv68_string;
4943 bypass = "_CLASSIC_ANSI_TYPES";
4945 sed = "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/";
4946 sed = "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/";
4947 sed = "s/strdup(char \\*s1);/strdup(const char *s1);/";
4949 sed = "/^extern char$/N";
4950 sed = "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/";
4952 sed = "/^extern int$/N";
4953 sed = "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/";
4955 sed = "/^\tstrncmp(),$/N";
4956 sed = 's
/^\
(' "\t" 'strncmp()\
),\n\
(' "\t" 'strlen(),\
)$
/'
4957 '\
1;' "\\\nextern unsigned int\\\n\\2/";
4960 "extern int strlen();\n"
4962 "extern int ffs(long);\n"
4975 "\tstrlen(), strspn();";
4979 * Fix return type of calloc, malloc, realloc, bsearch and exit
4982 hackname = sysz_stdlib_for_sun;
4984 bypass = "_CLASSIC_ANSI_TYPES";
4986 select = "char[ \t]*\\*[ \t]*(calloc|malloc|realloc|bsearch)[ \t]*\\(";
4988 c_fix_arg = "void *\t%1(";
4991 "extern char*\tcalloc(size_t);\n"
4992 "extern char*\tmalloc(size_t);\n"
4993 "extern char*\trealloc(void*,size_t);\n"
4994 "extern char*\tbsearch(void*,size_t,size_t);\n";
4998 * __thread is now a keyword.
5001 hackname = thread_keyword;
5002 files = "pthread.h";
5003 files = bits/sigthread.h, '*/bits
/sigthread.h
';
5004 select = "([* ])__thread([,)])";
5006 c_fix_arg = "%1__thr%2";
5009 "extern int pthread_create (pthread_t *__restrict __thread,\n"
5010 "extern int pthread_kill (pthread_t __thread, int __signo);\n"
5011 "extern int pthread_cancel (pthread_t __thread);";
5015 * if the #if says _cplusplus, not the double underscore __cplusplus
5019 hackname = tinfo_cplusplus;
5021 select = "[ \t]_cplusplus";
5024 c_fix_arg = " __cplusplus";
5025 test_text = "#ifdef _cplusplus\nint bogus;\n#endif";
5029 * parameters not const on DECstation Ultrix V4.0 and OSF/1.
5032 hackname = ultrix_const;
5034 select = 'perror\
( char \
*';
5037 c_fix_arg = "%1 const %3 *__";
5038 c_fix_arg = "([ \t*](perror|fputs|fwrite|scanf|fscanf)\\(.*)"
5039 "[ \t]+(char|void) \\*__";
5042 "extern void perror( char *__s );\n"
5043 "extern int fputs( char *__s, FILE *);\n"
5044 "extern size_t fwrite( void *__ptr, size_t, size_t, FILE *);\n"
5045 "extern int fscanf( FILE *__stream, char *__format, ...);\n"
5046 "extern int scanf( char *__format, ...);\n";
5050 * parameters not const on DECstation Ultrix V4.0 and OSF/1.
5053 hackname = ultrix_const2;
5056 select = '\
*fopen\
( char \
*';
5058 c_fix_arg = "%1( const char *%3, const char *";
5059 c_fix_arg = "([ \t*](fopen|sscanf|popen|tempnam))\\("
5060 "[ \t]*char[ \t]*\\*([^,]*),"
5061 "[ \t]*char[ \t]*\\*[ \t]*";
5064 "extern FILE *fopen( char *__filename, char *__type );\n"
5065 "extern int sscanf( char *__s, char *__format, ...);\n"
5066 "extern FILE *popen(char *, char *);\n"
5067 "extern char *tempnam(char*,char*);\n";
5071 * Fix definitions of macros used by va-i960.h in VxWorks header file.
5074 hackname = va_i960_macro;
5075 files = arch/i960/archI960.h;
5076 select = "__(vsiz|vali|vpad|alignof__)";
5079 c_fix_arg = "__vx%1";
5082 "extern int __vsiz vsiz;\n"
5083 "extern int __vali vali;\n"
5084 "extern int __vpad vpad;\n"
5085 "#define __alignof__(x) ...";
5089 * On VMS, add missing braces around sigset_t constants.
5092 hackname = vms_add_missing_braces;
5093 select = "(_SIG_[A-Z]+_SET[ \t]+= \\{)(0x[0F]+, 0x[0F]+)";
5095 files = "rtldef/signal.h";
5098 c_fix_arg = '%1 {%2} ';
5100 test_text = "static const __sigset_t _SIG_EMPTY_SET = "
5101 "{0x00000000, 0x00000000},\n"
5102 " _SIG_FULL_SET = {0xFFFFFFFF, 0xFFFFFFFF};\n";
5106 * On VMS, some DEC-C builtins are directly used.
5109 hackname = vms_decc_builtin;
5110 select = "(__MEMSET|__MEMMOVE|__MEMCPY|__STRLEN|__STRCPY)";
5112 files = rtldef/string.h, rtldef/time.h, rtldef/strings.h,
5114 sed = "s@__MEMSET@memset@";
5115 sed = "s@__MEMMOVE@memmove@";
5116 sed = "s@__MEMCPY@memcpy@";
5117 sed = "s@__STRLEN@strlen@";
5118 sed = "s@__STRCPY@strcpy@";
5120 test_text = "define FD_ZERO(__p) __MEMSET((__p), 0, sizeof(*(__p)))\n";
5124 * Define __CAN_USE_EXTERN_PREFIX on vms.
5127 hackname = vms_define_can_use_extern_prefix;
5128 files = "rtldef/decc$types.h";
5129 select = "#[ \t]*else\n"
5130 "#[ \t]*if defined\\(__DECCXX\\)\n"
5131 "#[ \t]*define __CAN_USE_EXTERN_PREFIX 1\n";
5136 "# elif defined (__GNUC__)\n"
5137 "#\tdefine __CAN_USE_EXTERN_PREFIX 1\n";
5139 test_text = "# else\n"
5140 "# if defined(__DECCXX)\n"
5141 "#\tdefine __CAN_USE_EXTERN_PREFIX 1\n"
5147 * On VMS, disable the use of dec-c string builtins
5150 hackname = vms_disable_decc_string_builtins;
5151 select = "#if !defined\\(__VAX\\)\n";
5153 files = "rtldef/string.h";
5156 c_fix_arg = "#if !defined(__VAX) && !defined(__GNUC__)\n";
5158 test_text = "#if !defined(__VAX)\n";
5162 * On VMS, fix incompatible redeclaration of hostalias.
5165 hackname = vms_do_not_redeclare_hostalias;
5166 select = "(void[ \t]+fp_nquery \\(const u_char \\*, int, FILE \\*\\);)\n"
5167 "(__char_ptr32[ \t]+hostalias \\(const char \\*\\);)";
5169 files = "rtldef/resolv.h";
5175 test_text = "void fp_nquery (const u_char *, int, FILE *);\n"
5176 "__char_ptr32 hostalias (const char *);\n";
5180 * On VMS, forward declare structure before referencing them in prototypes.
5183 hackname = vms_forward_declare_struct;
5184 select = "(/\\* forward decls for C\\+\\+ \\*/\n)"
5185 "#ifdef __cplusplus\n";
5187 files = rtldef/if.h;
5191 "#if defined (__cplusplus) || defined (__GNUC__)\n";
5193 test_text = "/* forward decls for C++ */\n"
5194 "#ifdef __cplusplus\n"
5200 * On VMS, do not declare getopt and al if pointers are 64 bit.
5203 hackname = vms_no_64bit_getopt;
5204 select = "^[ \t]*(extern[ \t]*)?(int[ \t]*(getopt|optind|opterr|optopt)"
5205 "|(char \\*optarg))([ \t]*\\(.*\\))?;\n";
5207 files = rtldef/stdio.h, rtldef/unistd.h;
5210 c_fix_arg = <<- _EOArg_
5211 #if __INITIAL_POINTER_SIZE != 64 /* getopt is short ptr only. */
5216 test_text = "int getopt (int, char * const [], const char *);";
5220 * On VMS, force the use of fast setjmp, as the normal setjmp uses conditions
5221 * which is not yet fully supported by gcc.
5224 hackname = vms_use_fast_setjmp;
5225 select = "(#[ \t]*if[ \t]*defined\\(__FAST_SETJMP\\)[ \t]*\\|\\|)";
5227 files = rtldef/setjmp.h;
5230 c_fix_arg = "%0 defined (__GNUC__) ||";
5232 test_text = "# if defined(__FAST_SETJMP) || defined(__UNIX_SETJMP)";
5236 * On VMS, use pragma extern_model instead of VAX-C keywords.
5239 hackname = vms_use_pragma_extern_model;
5240 select = "#if defined\\(__DECC\\) \\|\\| defined\\(__DECCXX\\)\n"
5241 "# pragma extern_model __save\n";
5245 c_fix_arg = "#if defined(__DECC) || defined(__DECCXX) || defined(__GNUC__)\n"
5246 "# pragma extern_model __save\n";
5248 test_text = "#if defined(__DECC) || defined(__DECCXX)\n"
5249 "# pragma extern_model __save\n"
5250 "# pragma extern_model strict_refdef\n"
5251 " extern struct x zz$yy;\n"
5252 "# pragma extern_model __restore\n"
5257 * On VMS, change <resource.h> to <sys/resource.h> to avoid a
5258 * conflict while building gcc. Likewise for <builtins.h>
5261 hackname = vms_use_quoted_include;
5262 select = "(#[ \t]*include[ \t]+)<(resource|builtins)\\.h>";
5264 files = rtldef/wait.h, starlet_c/pthread.h;
5267 c_fix_arg = '%1<sys
/%2.h
>';
5269 test_text = "# include <resource.h>";
5273 * AIX and Interix headers define NULL to be cast to a void pointer,
5274 * which is illegal in ANSI C++.
5277 hackname = void_null;
5278 files = curses.h, dbm.h, locale.h, stdio.h, stdlib.h, string.h,
5279 time.h, unistd.h, sys/dir.h, sys/param.h, sys/types.h;
5280 /* avoid changing C++ friendly NULL */
5281 bypass = __cplusplus;
5283 select = "^#[ \t]*define[ \t]+NULL[ \t]+\\(\\(void[ \t]*\\*\\)0\\)";
5285 c_fix_arg = <<- _EOFix_
5290 #else /* ! __GNUG__ */
5292 #endif /* __GNUG__ */
5293 #else /* ! __cplusplus */
5294 #define NULL ((void *)0)
5295 #endif /* __cplusplus */
5298 test_text = "# define\tNULL \t((void *)0) /* typed NULL */";
5302 * Make VxWorks header which is almost gcc ready fully gcc ready.
5305 hackname = vxworks_gcc_problem;
5306 files = types/vxTypesBase.h;
5307 select = "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
5309 sed = "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/"
5312 sed = "/[ \t]size_t/i\\\n"
5313 "#ifndef _GCC_SIZE_T\\\n"
5314 "#define _GCC_SIZE_T\n";
5316 sed = "/[ \t]size_t/a\\\n"
5319 sed = "/[ \t]ptrdiff_t/i\\\n"
5320 "#ifndef _GCC_PTRDIFF_T\\\n"
5321 "#define _GCC_PTRDIFF_T\n";
5323 sed = "/[ \t]ptrdiff_t/a\\\n"
5326 sed = "/[ \t]wchar_t/i\\\n"
5327 "#ifndef _GCC_WCHAR_T\\\n"
5328 "#define _GCC_WCHAR_T\n";
5330 sed = "/[ \t]wchar_t/a\\\n"
5334 "#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__\n"
5335 "typedef unsigned int size_t;\n"
5336 "typedef long ptrdiff_t;\n"
5337 "typedef unsigned short wchar_t;\n"
5338 "#endif /* __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__ */\n";
5342 * Wrap VxWorks ioctl to keep everything pretty
5345 hackname = vxworks_ioctl_macro;
5347 mach = "*-*-vxworks*";
5351 "#define ioctl(fd, func, arg) ioctl(fd, func, (int)(arg))\n";
5352 c_fix_arg = "extern[\t ]+int[\t ]+ioctl[\t ]*\\([\t ,[:alnum:]]*\\);";
5354 test_text = "extern int ioctl ( int asdf1234, int jkl , int qwerty ) ;";
5358 * Provide C99 FP classification support in VxWorks math.h if
5359 * not already there. Note the strict expectation on #define without
5360 * whitespaces in the bypass expression, which "works" for
5361 * the system headers we have met and doesn't match test texts for
5362 * other hacks
, found in the test baseline.
5365 hackname
= vxworks_math_h_fp_c99
;
5366 mach
= "*-*-vxworks*";
5368 bypass
= "#define[ \t]+FP_INFINITE";
5369 select
= "#define HUGE_VAL[ \t]*_ARCH.*";
5371 c_fix_arg
= << _EOArg_
5377 #define FP_INFINITE
1
5379 #define
FP_NORMAL (-1)
5380 #define
FP_SUBNORMAL (-2)
5383 #define
fpclassify(x
) \
5384 __builtin_fpclassify(FP_NAN
, FP_INFINITE
, FP_NORMAL
, \
5385 FP_SUBNORMAL
, FP_ZERO
, (x
))
5387 #define
signbit(x
) __builtin_signbit(x
)
5388 #define
isfinite(x
) __builtin_isfinite(x
)
5389 #define
isnormal(x
) __builtin_isnormal(x
)
5390 #define
isnan(x
) __builtin_isnan(x
)
5391 #define
isinf(x
) __builtin_isinf(x
)
5393 #define
isgreater(x
, y
) __builtin_isgreater((x
),(y
))
5394 #define
isgreaterequal(x
, y
) __builtin_isgreaterequal((x
),(y
))
5395 #define
isless(x
, y
) __builtin_isless((x
),(y
))
5396 #define
islessequal(x
, y
) __builtin_islessequal((x
),(y
))
5397 #define
islessgreater(x
, y
) __builtin_islessgreater((x
),(y
))
5398 #define
isunordered(x
, y
) __builtin_isunordered((x
),(y
))
5404 test_text
= "#define HUGE_VAL _ARCH_HUGH_VAL";
5408 * mkdir
's posix interface expects two arguments. While the RTP VxWorks
5409 * API is fine, the kernel version handles only one. We used to expose
5410 * a macro and this didn't play nice with uses such as posix
:mkdir(x
, y
)
5411 * in libstdc
++, so we expose a vararg prototype instead.
5414 hackname
= vxworks_posix_mkdir
;
5416 mach
= "*-*-vxworks*";
5419 c_fix_arg
= "extern STATUS mkdir(const char *dir, ...);";
5420 c_fix_arg
= "extern[\t ]+STATUS[\t ]+mkdir[\t ]*"
5421 "\\([\t ]*const[\t ]+char[\t ]*\\*[\t ]*" /* arg type
*/
5422 "(|[_[:alpha:]][_[:alnum:]]*)" /* arg
name (optional
) */
5425 test_text
= "extern STATUS mkdir (const char * _qwerty) ;";
5429 * Fix VxWorks
<time.h
> to not require including
<vxTypes.h
>.
5432 hackname
= vxworks_needs_vxtypes
;
5434 select
= "uint_t([ \t]+_clocks_per_sec)";
5436 c_fix_arg
= "unsigned int%1";
5437 test_text
= "uint_t\t_clocks_per_sec;";
5441 * Fix VxWorks
<sys
/stat.h
> to not require including
<vxWorks.h
>.
5444 hackname
= vxworks_needs_vxworks
;
5446 test
= " -r types/vxTypesOld.h";
5447 test
= " -n \"`egrep '#include' $file`\"";
5448 test
= " -n \"`egrep ULONG $file`\"";
5449 select
= "#[ \t]define[ \t]+__INCstath";
5451 sed
= "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n"
5452 "#include <types/vxTypesOld.h>\n";
5454 test_text
= "`touch types/vxTypesOld.h`"
5455 "#include </dev/null> /* ULONG */\n"
5456 "# define\t__INCstath <sys/stat.h>";
5460 * yvals.h on VxWorks
-6 expects the toolchain to provide its own
5461 * version of the header
, which we don
't do. Arrange to fallback
5462 * on the system definition.
5465 hackname = vxworks_next_yvals;
5466 mach = "*-*-vxworks*";
5468 select = "#include_next <yvals.h>";
5470 c_fix_arg = "#if 0 /* GCC does not provide yvals.h. */\n%1";
5471 c_fix_arg = "#if .*\n"
5473 "(#include_next <yvals.h>\n)";
5475 test_text = "#if (defined(__cplusplus) && defined(__GNUC__))\n"
5476 "/* GCC C++ has it's own yvals.h
*/\n"
5477 "#include_next
<yvals.h
>\n"
5482 * Make it so VxWorks does not include gcc/regs.h accidentally
5485 hackname = vxworks_regs;
5486 mach = "*-*-vxworks
*";
5488 select = "#
[\t ]*include
[\t ]+[<\"]regs.h
[>\"]";
5490 c_fix_arg = "#include
<arch
/..
/regs.h
>";
5492 test_text = "#include
<regs.h
>\n";
5496 * Likewise, open's posix interface allows two or three arguments and
5497 * some VxWorks headers expose only a strict 3 arguments version. Merely
5498 * changing the prototype into a varargs one is risky as the implementation
5499 * would receive garbage in the third arg for calls providing only two,
5500 * which libstdc++ does. We simply provide an always inline overload for C++
5503 * Both fcntl.h and ioLib.h might "feature
" such a prototype for _WRS_KERNEL.
5504 * The latter #includes the former though (since 1992 according to the embedded
5505 * log), so just leave ioLib.h alone.
5508 hackname = vxworks_posix_open;
5509 mach = "*-*-vxworks
*";
5512 select = "extern int.
*open
\\(const char
\\*[ a
-z
]*, int
[ a
-z
]*, int
[ a
-z
]*\\);";
5514 c_fix_arg = << _EOArg_
5517 #if defined(__cplusplus)
5519 inline int open (const char *, int) __attribute__((__always_inline__));
5522 open (const char *name, int flags)
5524 return open (name, flags, 0);
5532 "extern int
open (const char
*, int
, int
);\n"
5533 "extern int
open (const char
*name
, int flags
, int mode
);\n";
5537 * Another bad dependency in VxWorks 5.2 <time.h>.
5540 hackname = vxworks_time;
5542 test = " -r vxWorks.h
";
5544 select = "#
[ \t]*define
[ \t]+VOIDFUNCPTR
[ \t].
*";
5548 "#ifndef __gcc_VOIDFUNCPTR_defined
\n"
5549 "#ifdef __cplusplus
\n"
5550 "typedef
void (*__gcc_VOIDFUNCPTR) (...);\n"
5552 "typedef void (*__gcc_VOIDFUNCPTR) ();\n"
5554 "#define __gcc_VOIDFUNCPTR_defined\n"
5556 "#define VOIDFUNCPTR __gcc_VOIDFUNCPTR";
5558 test_text = "`touch vxWorks.h`"
5559 "#define VOIDFUNCPTR (void(*)())";
5563 * This hack makes write const-correct on VxWorks
5566 hackname = vxworks_write_const;
5568 mach = "*-*-vxworks*";
5571 c_fix_arg = "extern int write (int, const char*, size_t);";
5572 c_fix_arg = "extern[\t ]+int[\t ]+write[\t ]*\\("
5574 "[\t ]*char[\t ]*\\*[\t ]*,"
5575 "[\t ]*size_t[\t ]*\\)[\t ]*;";
5577 test_text = "extern int write ( int , char * , size_t ) ;";
5581 * This hack ensures the include_next in the fixed unistd.h actually
5582 * finds the system's unistd.h and not the fixed unistd.h again.
5585 hackname = vxworks_iolib_include_unistd;
5587 mach = "*-*-vxworks*";
5588 select = "#include \"unistd.h\"";
5591 c_fix_arg = "#include <unistd.h>";
5593 test_text = "#include \"unistd.h\"";
5597 * Make sure there is a visible prototype of sysClkRateGet() when
5598 * CLOCKS_PER_SEC is #defined to that in time.h for VxWorks. This would
5599 * typically be provided by sysLib.h.
5601 * The new #include has to come after the one for vxWorks.h in kernel headers
5602 * and vxWorks.h is typically not #included in RTP headers. yvals.h is
5603 * conditionally included in the latter, instead, and new #include are better
5604 * inserted after that.
5607 hackname = vxworks_time_h_syslib;
5609 mach = "*-*-vxworks*";
5610 select = "[ \t]*#define[ \t]+CLOCKS_PER_SEC[ \t]+sysClkRateGet.*";
5613 c_fix_arg = "%0\n#include <sysLib.h>";
5614 c_fix_arg = "#include <vxWorks.h>|#endif.* _YVALS.*";
5617 "/* kernel header pattern: */\n"
5618 "#include <vxWorks.h>\n"
5620 "/* rtp header pattern: */\n"
5622 "#include <yvals.h>\n"
5623 "#endif /* _YVALS */\n"
5625 "#define CLOCKS_PER_SEC sysClkRateGet()";
5629 * There are several name conflicts with C++ reserved words in X11 header
5630 * files. These are fixed in some versions, so don't do the fixes if
5631 * we find __cplusplus in the file. These were found on the RS/6000.
5634 hackname = x11_class;
5635 files = X11/ShellP.h;
5636 bypass = __cplusplus;
5637 select = "^([ \t]*char \\*)class
;(.*)
";
5639 c_fix_arg = "#ifdef __cplusplus
\n%1c_class
;%2\n"
5640 "#else
\n%1class
;%2\n#endif
";
5648 * class in Xm/BaseClassI.h
5651 hackname = x11_class_usage;
5652 files = Xm/BaseClassI.h;
5653 bypass = "__cplusplus
";
5655 select = " class
\\)";
5657 c_fix_arg = " c_class
)";
5659 test_text = "extern
mumble (int class
);\n";
5663 * new in Xm/Traversal.h
5667 files = Xm/Traversal.h;
5668 bypass = __cplusplus;
5670 sed = "/Widget
\told
, new
;/i
\\\n"
5671 "#ifdef __cplusplus
\\\n"
5672 "\\\tWidget
\told
, c_new
;\\\n"
5675 sed = "/Widget
\told
, new
;/a
\\\n"
5678 sed = "s
/Widget new
,/Widget c_new
,/g
";
5681 " Widget
\told
, new
;\n"
5682 "};\nextern
Wedged( Widget new
, Widget old
);";
5686 * Incorrect sprintf declaration in X11/Xmu.h
5689 hackname = x11_sprintf;
5691 files = X11/Xmu/Xmu.h;
5692 select = "^extern char
\\*\tsprintf
\\(\\);$
";
5695 c_fix_arg = "#ifndef __STDC__
\n%0\n#endif
/* !defined __STDC__
*/";
5697 test_text = "extern char
*\tsprintf
();";