mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 05:43:09 +00:00
5cf859d9d9
... parts of the config tuple. While here, remove parts that are setting portions of the target tuple to a value that's already the default. Signed-off-by: Alexey Neyman <stilor@att.net>
17 lines
308 B
Bash
17 lines
308 B
Bash
# Compute Xtensa-specific values
|
|
|
|
CT_DoArchTupleValues()
|
|
{
|
|
# The architecture part of the tuple:
|
|
CT_TARGET_ARCH="${CT_ARCH}${CT_ARCH_SUFFIX}"
|
|
CT_ARCH_ENDIAN_CFLAG=""
|
|
CT_ARCH_ENDIAN_LDFLAG=""
|
|
}
|
|
|
|
CT_DoArchUClibcConfig()
|
|
{
|
|
local cfg="${1}"
|
|
|
|
CT_DoArchUClibcSelectArch "${cfg}" "xtensa"
|
|
}
|