Default to big endian ARM if "TARGET_BIG_ENDIAN" is defined, and set an ARM
target default.
This commit is contained in:
parent
124866d539
commit
8d60fe4054
@ -6,6 +6,10 @@ TARGET_ARCH?= ${MACHINE_ARCH}
|
||||
GCC_CPU= alpha
|
||||
.elif ${TARGET_ARCH} == "arm"
|
||||
GCC_CPU= arm
|
||||
TARGET_CPU_DEFAULT= TARGET_CPU_xscale
|
||||
.if defined(TARGET_BIG_ENDIAN)
|
||||
CFLAGS+= -DTARGET_ENDIAN_DEFAULT=ARM_FLAG_BIG_END
|
||||
.endif
|
||||
.elif ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "amd64"
|
||||
GCC_CPU= i386
|
||||
.elif ${TARGET_ARCH} == "ia64"
|
||||
|
Loading…
Reference in New Issue
Block a user