aadf04f736
* configure: Rebuild. * mpw-config.in: Add xcofflink.c.o to powerpc-apple-macos. * coff-pmac.c: Include coff-rs6000.c instead of duplicating its contents. (pmac_xcoff_vec): Update to use new xcoff support. * coff-rs6000.c (xcoff_generic_stat_arch_elt): Make static. (xcoff_write_armap): Declare buf as unsigned char. * xcofflink.c (xcoff_link_add_symbols): Declare a local as PTR. * mpw-make.sed: Generalize subdir_do edit.
70 lines
2.5 KiB
Plaintext
70 lines
2.5 KiB
Plaintext
# Configuration fragment for BFD.
|
|
|
|
# This is almost always correct.
|
|
|
|
Set selarchs "&bfd_{target_cpu}_arch"
|
|
Set defvec ""
|
|
Set selvecs ""
|
|
|
|
If "{target_canonical}" =~ /m68k-apple-macos/
|
|
Set BFD_BACKENDS '"{o}"coff-m68k.c.o "{o}"cofflink.c.o'
|
|
Set defvec m68kcoff_vec
|
|
Set selvecs '&m68kcoff_vec'
|
|
Else If "{target_canonical}" =~ /powerpc-apple-macos/
|
|
Set BFD_BACKENDS '"{o}"coff-pmac.c.o "{o}"xcofflink.c.o'
|
|
Set defvec pmac_xcoff_vec
|
|
Set selvecs '&pmac_xcoff_vec'
|
|
Set selarchs "&bfd_powerpc_arch"
|
|
Else If "{target_canonical}" =~ /i386-unknown-go32/
|
|
Set BFD_BACKENDS '"{o}"coff-i386.c.o'
|
|
Set defvec i386coff_vec
|
|
Set selvecs '&i386coff_vec'
|
|
Else If "{target_canonical}" =~ /mips-idt-ecoff/
|
|
Set BFD_BACKENDS '"{o}"coff-mips.c.o "{o}"ecoff.c.o "{o}"ecofflink.c.o'
|
|
Set defvec ecoff_big_vec
|
|
Set selvecs '&ecoff_big_vec,&ecoff_little_vec'
|
|
Else If "{target_canonical}" =~ /sh-hitachi-hms/
|
|
Set BFD_BACKENDS '"{o}"coff-sh.c.o "{o}"cofflink.c.o'
|
|
Set defvec shcoff_vec
|
|
Set selvecs '&shcoff_vec,&shlcoff_vec'
|
|
End If
|
|
|
|
Set ta `echo {selarchs} | sed -e 's/&bfd_/{o}cpu-/g' -e 's/_arch/.c.o/g'`
|
|
|
|
Set tdefaults "-d DEFAULT_VECTOR={defvec} -d SELECT_VECS={selvecs} -d SELECT_ARCHITECTURES={selarchs}"
|
|
|
|
Echo '# From mpw-config.in' > "{o}"mk.tmp
|
|
Echo 'WORDSIZE = 32' >> "{o}"mk.tmp
|
|
Echo 'BFD_MACHINES = ' {ta} >> "{o}"mk.tmp
|
|
Echo 'BFD_BACKENDS = ' {BFD_BACKENDS} >> "{o}"mk.tmp
|
|
Echo 'TDEFAULTS = ' {tdefaults} >> "{o}"mk.tmp
|
|
Echo 'HDEPFILES = ' >> "{o}"mk.tmp
|
|
Echo 'TDEPFILES = ' >> "{o}"mk.tmp
|
|
Echo '# End from mpw-config.in' >> "{o}"mk.tmp
|
|
|
|
Echo '/* config.h. Generated by mpw-configure. */' > "{o}"config.new
|
|
Echo '#include "mpw.h"' >> "{o}"config.new
|
|
|
|
MoveIfChange "{o}"config.new "{o}"config.h
|
|
|
|
# We can only handle 32-bit targets right now.
|
|
|
|
sed -e 's/@WORDSIZE@/32/' \Option-d
|
|
-e "s/@VERSION@/`Catenate {srcdir}VERSION`/" \Option-d
|
|
-e 's/@BFD_HOST_64BIT_LONG@/0/' \Option-d
|
|
"{srcdir}"bfd-in2.h >"{o}"bfd.h-new
|
|
|
|
MoveIfChange "{o}"bfd.h-new "{o}"bfd.h
|
|
|
|
# Pre-expand some macros in coffswap.h, so MPW C doesn't choke.
|
|
|
|
sed -e 's/^ PUT_AOUTHDR_TSIZE (/ bfd_h_put_32 (/' \Option-d
|
|
-e 's/^ PUT_AOUTHDR_DSIZE (/ bfd_h_put_32 (/' \Option-d
|
|
-e 's/^ PUT_AOUTHDR_BSIZE (/ bfd_h_put_32 (/' \Option-d
|
|
-e 's/^ PUT_AOUTHDR_ENTRY (/ bfd_h_put_32 (/' \Option-d
|
|
-e 's/^ PUT_AOUTHDR_TEXT_START (/ bfd_h_put_32 (/' \Option-d
|
|
-e 's/^ PUT_AOUTHDR_DATA_START (/ bfd_h_put_32 (/' \Option-d
|
|
"{srcdir}"coffswap.h >"{o}"coffswap.h-new
|
|
|
|
MoveIfChange "{o}"coffswap.h-new "{o}"coffswap.h
|