From: Dave Brolley Date: Wed, 13 Dec 2006 16:38:37 +0000 (+0000) Subject: 2006-12-13 Dave Brolley X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=906156c429ff3edc3034c232da93a0393a366aa8;p=binutils-gdb.git 2006-12-13 Dave Brolley * lib/ld-lib.exp (big_or_little_endian): Accept -meb and -mel for big and little endian respectively. --- diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index e80a8785329..d333608a495 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2006-12-13 Dave Brolley + + * lib/ld-lib.exp (big_or_little_endian): Accept -meb and + -mel for big and little endian respectively. + 2006-12-12 Ina Pandit * ld-scripts/overlay-size-map.d: Update. diff --git a/ld/testsuite/lib/ld-lib.exp b/ld/testsuite/lib/ld-lib.exp index 4fbe2af8ccd..dd42eabd9a7 100644 --- a/ld/testsuite/lib/ld-lib.exp +++ b/ld/testsuite/lib/ld-lib.exp @@ -90,11 +90,11 @@ proc big_or_little_endian {} { foreach x $tmp_flags { case $x in { - {*big*endian eb EB -eb -EB -mb} { + {*big*endian eb EB -eb -EB -mb -meb} { set flags " -EB" return $flags } - {*little*endian el EL -el -EL -ml} { + {*little*endian el EL -el -EL -ml -mel} { set flags " -EL" return $flags }