xref: /netbsd-src/external/gpl3/binutils/dist/ld/emulparams/arc-endianness.sh (revision e89934bbf778a6d6d6894877c4da59d0c7835b0f)
1# Select an appropriate endinaness based on the value of target.  When
2# building for all targets we select little endian, which is what the
3# '*' pattern is for.
4case ${target} in
5    arceb-*)
6        ARC_ENDIAN="big"
7        ;;
8    arc-* | * )
9        ARC_ENDIAN="little"
10        ;;
11esac
12