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.
21 lines
500 B
Makefile
21 lines
500 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
SRCS+= cpu-i386.c elf32-i386.c elf32-target.h elf32.c elflink.c
|
|
VECS+= bfd_elf32_i386_vec
|
|
.if ${TARGET_ARCH} == "i386"
|
|
CFLAGS+= -DDEFAULT_VECTOR=bfd_elf32_i386_vec
|
|
.endif
|
|
CFLAGS+= -DHAVE_bfd_elf32_i386_vec
|
|
|
|
.if defined(BINUTILSDISTDIR) && exists(${BINUTILSDISTDIR})
|
|
SRCS+= pe-i386.c pei-i386.c
|
|
VECS+= i386pe_vec i386pei_vec
|
|
CFLAGS+= -DHAVE_i386pe_vec -DHAVE_i386pei_vec
|
|
.endif
|
|
|
|
CLEANFILES+= elf32-target.h
|
|
|
|
elf32-target.h: elfxx-target.h
|
|
sed -e s/NN/32/g ${.ALLSRC} > ${.TARGET}
|