mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-27 16:18:52 +00:00
b8d189b296
/trunk/kconfig/kconfig.mk | 46 23 23 0 +++++++++++++++++++++++----------------------- /trunk/scripts/crosstool.sh | 2 1 1 0 +- /trunk/docs/overview.txt | 28 11 17 0 +++++++++++----------------- 3 files changed, 35 insertions(+), 41 deletions(-)
13 lines
320 B
Bash
13 lines
320 B
Bash
# Compute IA-64-specific values
|
|
|
|
CT_DoArchValues() {
|
|
# The architecture part of the tuple:
|
|
CT_TARGET_ARCH="${CT_ARCH}${target_endian_el}"
|
|
|
|
# Override CFLAGS for endianness:
|
|
case "${CT_ARCH_BE},${CT_ARCH_LE}" in
|
|
y,) CT_ARCH_ENDIAN_CFLAG="-EB";;
|
|
,y) CT_ARCH_ENDIAN_CFLAG="-EL";;
|
|
esac
|
|
}
|