mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 13:23:08 +00:00
9 lines
176 B
Bash
9 lines
176 B
Bash
# Compute s390-specific values
|
|
|
|
CT_DoArchTupleValues() {
|
|
# That's the only thing to override
|
|
if [ "${CT_ARCH_64}" = "y" ]; then
|
|
CT_TARGET_ARCH="s390x"
|
|
fi
|
|
}
|