vax decoding of indexed addressing mode
[deliverable/binutils-gdb.git] / ld / emulparams / arc-endianness.sh
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.
4 case ${target} in
5 arceb-*)
6 ARC_ENDIAN="big"
7 ;;
8 arc-* | * )
9 ARC_ENDIAN="little"
10 ;;
11 esac
This page took 0.028637 seconds and 4 git commands to generate.