diff options
author | David Billinghurst <David.Billinghurst@riotinto.com.au> | 2000-08-03 13:30:18 +0000 |
---|---|---|
committer | Christopher Faylor <cgf@gcc.gnu.org> | 2000-08-03 13:30:18 +0000 |
commit | 5535a5a62e8fd363773ebc194b609d0371e0e5cd (patch) | |
tree | d5303d41c6ff1d7102123f4efe372e778e78bbdd | |
parent | 5ab63c1aea2a97e7b5e63d01b56bcbf8ddc15726 (diff) | |
download | gcc-5535a5a62e8fd363773ebc194b609d0371e0e5cd.tar.gz |
cygwin.h: Remove -remap from CPP_SPEC since this option is not supported by tradcpp and...
* config/i386/cygwin.h: Remove -remap from CPP_SPEC since this option is not
supported by tradcpp and isn't actually needed for cygwin.
From-SVN: r35451
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/cygwin.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8914591c106..d3f9b256856 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-08-03 David Billinghurst <David.Billinghurst@riotinto.com.au> + + * config/i386/cygwin.h: Remove -remap from CPP_SPEC since this option + is not supported by tradcpp and isn't actually needed for cygwin. + 2000-08-03 Kazu Hirata <kazu@hxi.com> * toplev.c: Fix formatting. diff --git a/gcc/config/i386/cygwin.h b/gcc/config/i386/cygwin.h index 6e538d5f401..5839068bac8 100644 --- a/gcc/config/i386/cygwin.h +++ b/gcc/config/i386/cygwin.h @@ -84,7 +84,7 @@ Boston, MA 02111-1307, USA. */ %{mno-cygwin:crt1%O%s} %{pg:gcrt0%O%s}}" #undef CPP_SPEC -#define CPP_SPEC "-remap %(cpp_cpu) %{posix:-D_POSIX_SOURCE} \ +#define CPP_SPEC "%(cpp_cpu) %{posix:-D_POSIX_SOURCE} \ -D__stdcall=__attribute__((__stdcall__)) \ -D__cdecl=__attribute__((__cdecl__)) \ %{!ansi:-D_stdcall=__attribute__((__stdcall__)) \ |