diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/emulparams/arc-endianness.sh | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 24c19a1..fe63b96 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2016-04-07 Andrew Burgess <andrew.burgess@embecosm.com> + + * emulparams/arc-endianness.sh: Make little endian default choice. + 2016-04-07 Nick Clifton <nickc@redhat.com> * scripttempl/elf32msp430.sc (.MSP430.attributes): Fix typo in diff --git a/ld/emulparams/arc-endianness.sh b/ld/emulparams/arc-endianness.sh index 4d6158b..7a66dee 100644 --- a/ld/emulparams/arc-endianness.sh +++ b/ld/emulparams/arc-endianness.sh @@ -1,10 +1,11 @@ +# Select an appropriate endinaness based on the value of target. When +# building for all targets we select little endian, which is what the +# '*' pattern is for. case ${target} in arceb-*) ARC_ENDIAN="big" ;; - arc-*) + arc-* | * ) ARC_ENDIAN="little" ;; - *) - exit 1 esac |