diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-29 00:47:10 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-29 00:47:10 +0000 |
commit | 3a36dff306fc01fba889427f91012b9e70d9c942 (patch) | |
tree | effcfc36e61e8e2a6ba95b48205af287c1e3cd1a /gcc/config/alpha/xm-vms.h | |
parent | dd53deb4eda4b3c4612a94e72072e7ec3b70d885 (diff) | |
download | gcc-3a36dff306fc01fba889427f91012b9e70d9c942.tar.gz |
* am-alpha.h: Don't include alloca for OPEN_VMS.
* alpha/xm-vms.h (HAVE_CPP_STRINGIFY): Define.
* alpha/xm-vms.h (INCLUDE_DEFAULTS): Define.
(GCC_INCLUDE_DIR): Define
* make-cc.com, make-cccp.com, make-cc1.com: Removed.
* makefile.vms: New file.
* alpha/vms.h (CPP_PREDEFINES): Remove -Dalpha.
* alpha.c (output_prolog): Output '.name' directive
for minimal traceback information.
* alpha.c (output_prolog): Don't prepend entry point symbols
with '$' on OPEN_VMS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17546 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/alpha/xm-vms.h')
-rw-r--r-- | gcc/config/alpha/xm-vms.h | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/gcc/config/alpha/xm-vms.h b/gcc/config/alpha/xm-vms.h index c96423a6e5a..43ac5b62cfb 100644 --- a/gcc/config/alpha/xm-vms.h +++ b/gcc/config/alpha/xm-vms.h @@ -1,5 +1,5 @@ /* Configuration for GNU C-compiler for openVMS/Alpha. - Copyright (C) 1996 Free Software Foundation, Inc. + Copyright (C) 1996, 1997 Free Software Foundation, Inc. Contributed by Klaus Kaempf (kkaempf@progis.de). This file is part of GNU CC. @@ -51,9 +51,23 @@ Boston, MA 02111-1307, USA. */ #define VMS #endif +#define GCC_INCLUDE_DIR "" +/* Specify the list of include file directories. */ +#define INCLUDE_DEFAULTS \ +{ \ + { "GNU_GXX_INCLUDE:", "G++", 1, 1 }, \ + { "GNU_CC_INCLUDE:", "GCC", 0, 0 }, \ + { ".", 0, 0, 1 }, \ + { 0, 0, 0, 0 } \ +} + /* Define a local equivalent (sort of) for unlink */ #define unlink remove + #define NEED_ATEXIT +#define HAVE_VPRINTF +#define HAVE_PUTENV +#define HAVE_STRERROR #define NO_SYS_PARAMS_H /* Don't have <sys/params.h> */ #define NO_STAB_H /* Don't have <stab.h> */ @@ -63,16 +77,11 @@ Boston, MA 02111-1307, USA. */ #define HAVE_STDLIB_H 1 #define HAVE_UNISTD_H 1 #define HAVE_STRING_H 1 +#define HAVE_LIMITS_H 1 +#define HAVE_STDDEF_H 1 +#define HAVE_TIME_H 1 #define STDC_HEADERS 1 - -/* Use ANSI/SYSV style byte manipulation routines instead of BSD ones. */ - -#define bcopy(s,d,n) memcpy((d),(s),(n)) -#define bzero(d,n) memset((d),0,(n)) -#define bcmp(l,r,n) memcmp((l),(r),(n)) - -#define index strchr -#define rindex strrchr +#define HAVE_CPP_STRINGIFY 1 #if __STDC__ extern void *alloca (size_t); @@ -82,5 +91,3 @@ extern char *alloca (unsigned int); #define OBJECT_SUFFIX ".obj" #define EXECUTABLE_SUFFIX ".exe" -#define DIR_SEPARATOR ']' -#define PATH_SEPARATOR ',' |