GCC with patches for OS216
Revision | 01a8adb57b25c1087bc0839f882cb2e826b20c91 (tree) |
---|---|
Zeit | 1999-10-12 14:51:42 |
Autor | Jeffrey A Law <law@cygn...> |
Commiter | Jeff Law |
pa.h (CPP_SPEC): Conditionally add -DSTDC_EXT to the cpp command line.
From-SVN: r29911
@@ -1,5 +1,9 @@ | ||
1 | 1 | Mon Oct 11 23:35:19 1999 Jeffrey A Law (law@cygnus.com) |
2 | 2 | |
3 | + Tue Jun 29 01:37:53 1999 Jeffrey A Law (law@cygnus.com) | |
4 | + * pa.h (CPP_SPEC): Conditionally add -D__STDC_EXT__ to the cpp | |
5 | + command line. | |
6 | + | |
3 | 7 | Thu Sep 2 20:08:23 1999 J"orn Rennecke <amylaar@cygnus.co.uk> |
4 | 8 | * regmove.c (fixup_match_1): Don't change an unchanging register. |
5 | 9 | (stable_but_for_p): Renamed to: |
@@ -278,11 +278,11 @@ extern int target_flags; | ||
278 | 278 | #if ((TARGET_DEFAULT | TARGET_CPU_DEFAULT) & MASK_PA_11) == 0 |
279 | 279 | #define CPP_SPEC "%{msnake:-D__hp9000s700 -D_PA_RISC1_1}\ |
280 | 280 | %{mpa-risc-1-1:-D__hp9000s700 -D_PA_RISC1_1}\ |
281 | - %{!ansi: -D_HPUX_SOURCE -D_HIUX_SOURCE}\ | |
281 | + %{!ansi: -D_HPUX_SOURCE -D_HIUX_SOURCE -D__STDC_EXT__}\ | |
282 | 282 | %{threads:-D_REENTRANT -D_DCE_THREADS}" |
283 | 283 | #else |
284 | 284 | #define CPP_SPEC "%{!mpa-risc-1-0:%{!mnosnake:%{!msoft-float:-D__hp9000s700 -D_PA_RISC1_1}}} \ |
285 | - %{!ansi: -D_HPUX_SOURCE -D_HIUX_SOURCE}\ | |
285 | + %{!ansi: -D_HPUX_SOURCE -D_HIUX_SOURCE -D__STDC_EXT__}\ | |
286 | 286 | %{threads:-D_REENTRANT -D_DCE_THREADS}" |
287 | 287 | #endif |
288 | 288 |