repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adjust linker tests that are sensitive to --rosegment
[binutils-gdb.git]
/
ld
/
emulparams
/
arc-endianness.sh
blob
9b716bf136b441204461cc196bd610d95af6c5cf
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