diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-01-29 19:48:18 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-01-29 19:48:18 +0000 |
commit | c412299f000f1134e73180623e9a3954f8ec4973 (patch) | |
tree | fc3778235921042361f42730b4268aaa6041e309 /gas/config | |
parent | d476d46aabef1a56af211f59cb7329243720c15a (diff) | |
download | gdb-c412299f000f1134e73180623e9a3954f8ec4973.zip gdb-c412299f000f1134e73180623e9a3954f8ec4973.tar.gz gdb-c412299f000f1134e73180623e9a3954f8ec4973.tar.bz2 |
Thu Jan 29 14:42:44 1998 Pat Rankin <rankin@eql.caltech.edu>
* Makefile.am (CONFIG_OBJS): New variable, containing part of old
OBJS variable.
(GENERIC_OBJS): New variable, with the rest of the old OBJS
variable.
(OBJS): Now just $(CONFIG_OBJS) and $(GENERIC_OBJS).
($(srcdir)/make-gas.com): Rename from make-gas.com.
(stamp-mk.com): Replace $(OBJS) with $(GENERIC_OBJS).
(EXTRA_DIST): Define.
* vmsconf.sh: Handle {targ-cpu, obj-format, atof-targ} modules
explicitly rather than via the list of object files.
(gcc-as.opt): New file created when make-gas.com is run.
* config-gas.com: Create {targ-cpu.h, obj-format.h, targ-env.h,
itbl-cpu.h} to #include appropriate file rather than copying that
file.
* config/vms-conf.h: Synchronize with current config.in.
* Makefile.in: Rebuild.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/vms-conf.h | 38 |
1 files changed, 35 insertions, 3 deletions
diff --git a/gas/config/vms-conf.h b/gas/config/vms-conf.h index c29cd3b..da722a0 100644 --- a/gas/config/vms-conf.h +++ b/gas/config/vms-conf.h @@ -28,12 +28,21 @@ /* If using the C implementation of alloca, define if you know the direction of stack growth for your system; otherwise it will be automatically deduced at run-time. - STACK_DIRECTION > 0 => grows toward higher addresses - STACK_DIRECTION < 0 => grows toward lower addresses - STACK_DIRECTION = 0 => direction of growth unknown + STACK_DIRECTION > 0 => grows toward higher addresses + STACK_DIRECTION < 0 => grows toward lower addresses + STACK_DIRECTION = 0 => direction of growth unknown */ #define STACK_DIRECTION (-1) +/* Define if lex declares yytext as a char * by default, not a char[]. */ +#undef YYTEXT_POINTER + +/* Name of package. */ +#undef PACKAGE + +/* Version of package. */ +#undef VERSION + /* Should gas use high-level BFD interfaces? */ #undef BFD_ASSEMBLER @@ -57,17 +66,27 @@ #define TARGET_OS "vms" #define TARGET_VENDOR "dec" +/* Sometimes the system header files don't declare strstr. */ +#undef NEED_DECLARATION_STRSTR + /* Sometimes the system header files don't declare malloc and realloc. */ #undef NEED_DECLARATION_MALLOC /* Sometimes the system header files don't declare free. */ #undef NEED_DECLARATION_FREE +/* Sometimes the system header files don't declare sbrk. */ +#undef NEED_DECLARATION_SBRK + /* Sometimes errno.h doesn't declare errno itself. */ #undef NEED_DECLARATION_ERRNO #undef MANY_SEGMENTS +/* The configure script defines this for some targets based on the + target name used. It is not always defined. */ +#undef TARGET_BYTES_BIG_ENDIAN + /* Needed only for some configurations that can produce multiple output formats. */ #undef DEFAULT_EMULATION @@ -90,9 +109,22 @@ #undef M68KCOFF #undef M88KCOFF +/* Using cgen code? */ +#undef USING_CGEN + +/* Needed only for sparc configuration. */ +#undef DEFAULT_ARCH + +/* Needed only for PowerPC Solaris. */ +#undef TARGET_SOLARIS_COMMENT + +/* Needed only for SCO 5. */ +#undef SCO_ELF + /* Define if you have the remove function. */ #define HAVE_REMOVE +/* Define if you have the sbrk function. */ /* sbrk() is available, but we don't want gas to use it. */ #undef HAVE_SBRK |