2014-09-13 00:14:23 +02:00
|
|
|
# Test expressions in a linker script.
|
2012-03-26 21:18:29 +02:00
|
|
|
# By Nathan Sidwell, CodeSourcery LLC
|
2022-10-27 20:45:45 +02:00
|
|
|
# Copyright (C) 2006-2022 Free Software Foundation, Inc.
|
2012-03-26 21:18:29 +02:00
|
|
|
#
|
|
|
|
# This file is part of the GNU Binutils.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
# MA 02110-1301, USA.
|
|
|
|
|
2022-10-27 20:45:45 +02:00
|
|
|
set old_LDFLAGS $LDFLAGS
|
|
|
|
if { [istarget spu*-*-*] } then {
|
|
|
|
set LDFLAGS "$LDFLAGS --no-overlays --local-store 0:0"
|
|
|
|
} elseif { [is_pecoff_format] } then {
|
|
|
|
set LDFLAGS "$LDFLAGS --image-base 0"
|
|
|
|
} elseif { [is_xcoff_format] } then {
|
|
|
|
set LDFLAGS "$LDFLAGS -bnogc"
|
|
|
|
}
|
|
|
|
|
2012-03-26 21:18:29 +02:00
|
|
|
run_dump_test expr1
|
2014-09-13 00:14:23 +02:00
|
|
|
run_dump_test expr2
|
|
|
|
run_dump_test sane1
|
|
|
|
run_dump_test assign-loc
|
|
|
|
run_dump_test pr14962
|
2015-08-28 17:32:19 +02:00
|
|
|
run_dump_test pr14962-2
|
2022-10-27 20:45:45 +02:00
|
|
|
run_dump_test pr18963
|
2018-12-28 16:25:28 +01:00
|
|
|
run_dump_test pr22267
|
2017-04-10 13:32:00 +02:00
|
|
|
|
2022-10-27 20:45:45 +02:00
|
|
|
set LDFLAGS $old_LDFLAGS
|