mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 21:57:48 +00:00
e85ec884ad
Signed-off-by: Alexey Neyman <stilor@att.net>
17 lines
313 B
Bash
17 lines
313 B
Bash
# Moxie-specific arch callbacks
|
|
|
|
# No arch-specific overrides yet
|
|
CT_DoArchTupleValues()
|
|
{
|
|
case "${CT_ARCH_ENDIAN}" in
|
|
big) CT_ARCH_ENDIAN_CFLAG=-meb;;
|
|
little) CT_ARCH_ENDIAN_CFLAG=-mel;;
|
|
esac
|
|
|
|
case "${CT_LIBC}" in
|
|
moxiebox)
|
|
CT_TARGET_SYS=moxiebox
|
|
;;
|
|
esac
|
|
}
|