mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-22 14:12:26 +00:00
9 lines
184 B
Bash
9 lines
184 B
Bash
|
# Compute sparc-specific values
|
||
|
CT_DoArchTupleValues() {
|
||
|
# That's the only thing to override
|
||
|
if [ "${CT_ARCH_64}" = "y" ]; then
|
||
|
CT_TARGET_ARCH="${CT_ARCH}64"
|
||
|
fi
|
||
|
|
||
|
}
|