diff options
author | Fred Fish <fnf@specifix.com> | 1997-02-14 01:04:19 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1997-02-14 01:04:19 +0000 |
commit | af16e4115dcaffa8d48e4ff5b223f087ac2bdd55 (patch) | |
tree | 1a6c95105f4cfc984dbfacf36d76690f8da91125 /gas/mpw-config.in | |
parent | d83c8ac193f20b4407cf0878fa94c59cfaf971c3 (diff) | |
download | gdb-af16e4115dcaffa8d48e4ff5b223f087ac2bdd55.zip gdb-af16e4115dcaffa8d48e4ff5b223f087ac2bdd55.tar.gz gdb-af16e4115dcaffa8d48e4ff5b223f087ac2bdd55.tar.bz2 |
* doc/Makefile.in (TEXI2DVI): Set to just name of program.
(DVIPS): Set to dvips.
(ps, as.ps, gasp.ps): New targets.
(internals.info, gasp.dvi, internals.dvi): Set both TEXINPUTS
and MAKEINFO env variables.
(internals.ps): Use DVIPS macro.
(clean): Remove core and backup files.
(distclean): Remove temporary files from building internals.
(clean-dvi): Ditto.
* doc/internals.texi (Frags): Fix typo.
(GAS processing): Ditto.
(CPU backend): Ditto.
* ecoff.c (init_file): Use TARGET_BYTES_BIG_ENDIAN value directly.
* mpw-config.in: Define TARGET_BYTES_BIG_ENDIAN as 1.
* read.c: Remove ugly hack that dealt with config files not
correctly defining TARGET_BYTES_BIG_ENDIAN.
(target_big_endian): Use TARGET_BYTES_BIG_ENDIAN directly.
* config/arm-big.mt: Define TARGET_BYTES_BIG_ENDIAN to 1.
* config/arm-lit.mt: Define TARGET_BYTES_BIG_ENDIAN to 0.
* config/mips-big.mt: Define TARGET_BYTES_BIG_ENDIAN to 1.
* config/mips-lit.mt: Define TARGET_BYTES_BIG_ENDIAN to 0.
* config/ppc-lit.mt: Define TARGET_BYTES_BIG_ENDIAN to 1.
* config/ppc-sol.mt: Replace TARGET_BYTES_LITTLE_ENDIAN
with TARGET_BYTES_BIG_ENDIAN defined to 0.
* config/tc-arm.h: Remove use of TARGET_BYTES_LITTLE_ENDIAN
and simplify. Test value of TARGET_BYTES_BIG_ENDIAN, not just
whether it is defined or not.
* config/tc-mips.h: Remove use of TARGET_BYTES_LITTLE_ENDIAN.
* config/tc-ppc.h: Remove use of TARGET_BYTES_LITTLE_ENDIAN
and simplify. Test value of TARGET_BYTES_BIG_ENDIAN, not just
whether it is defined or not.
start-sanitize-tic80
* config/tic80.h (TARGET_FORMAT): Define to coff-tic80.
(TARGET_BYTES_BIG_ENDIAN): Define to 0.
end-sanitize-tic80
Diffstat (limited to 'gas/mpw-config.in')
-rw-r--r-- | gas/mpw-config.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/mpw-config.in b/gas/mpw-config.in index 9a58340..9e29b1d 100644 --- a/gas/mpw-config.in +++ b/gas/mpw-config.in @@ -43,13 +43,13 @@ Else If "{target_canonical}" =~ /m68k-\Option-x-coff/ Else If "{target_canonical}" =~ /mips-idt-ecoff/ Set bfd_gas yes - Set TDEFINES '-d TARGET_BYTES_BIG_ENDIAN' + Set TDEFINES '-d TARGET_BYTES_BIG_ENDIAN=1' Else If "{target_canonical}" =~ /mips-\Option-x-\Option-x/ # Assume other OSes etc use ELF Set obj_format "elf" Set bfd_gas yes - Set TDEFINES '-d TARGET_BYTES_BIG_ENDIAN' + Set TDEFINES '-d TARGET_BYTES_BIG_ENDIAN=1' forward-include "{srcroot}"bfd:elf-bfd.h 'bfd/elf-bfd.h' Else If "{target_canonical}" =~ /sh-\Option-x-hms/ |