ecc4dcbd82
The target machine is represented by TARGET_ARCH. MACHINE_ARCH always represents the host machine. When TARGET_ARCH is not defined, it is assumed to be equal to MACHINE_ARCH. This means that we're building a native toolset by default. We're creating cross-compilation tools when MACHINE_ARCH != TARGET_ARCH. TARGET_ARCH is defined when building binutils as part of the bootstrap build and is set to reflect the architecture we're currently cross- building. With this change binutils is ready for cross-building.
36 lines
756 B
Makefile
36 lines
756 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
SRCS+= cofflink.c \
|
|
cpu-powerpc.c \
|
|
elf32-ppc.c \
|
|
elf32-target.h \
|
|
elf32.c \
|
|
elflink.c \
|
|
pe-ppc.c \
|
|
pei-ppc.c \
|
|
ppcboot.c \
|
|
xcofflink.c
|
|
VECS+= bfd_elf32_powerpc_vec \
|
|
bfd_elf32_powerpcle_vec \
|
|
bfd_powerpc_pe_vec \
|
|
bfd_powerpc_pei_vec \
|
|
bfd_powerpcle_pe_vec \
|
|
bfd_powerpcle_pei_vec \
|
|
ppcboot_vec
|
|
.if ${TARGET_ARCH} == "powerpc"
|
|
CFLAGS+= -DDEFAULT_VECTOR=bfd_elf32_powerpc_vec
|
|
.endif
|
|
CFLAGS+= -DHAVE_bfd_elf32_powerpc_vec \
|
|
-DHAVE_bfd_elf32_powerpcle_vec \
|
|
-DHAVE_bfd_powerpc_pe_vec \
|
|
-DHAVE_bfd_powerpc_pei_vec \
|
|
-DHAVE_bfd_powerpcle_pe_vec \
|
|
-DHAVE_bfd_powerpcle_pei_vec \
|
|
-DHAVE_ppcboot_vec
|
|
CLEANFILES+= elf32-target.h
|
|
|
|
elf32-target.h: elfxx-target.h
|
|
sed -e s/NN/32/g ${.ALLSRC} > ${.TARGET}
|