2004-02-19 22:08:31 +08:00
|
|
|
# Test DATA STATEMENT in a linker script.
|
|
|
|
# By Nathan Sidwell, CodeSourcery LLC
|
2022-01-02 06:30:17 +08:00
|
|
|
# Copyright (C) 2004-2022 Free Software Foundation, Inc.
|
2004-02-19 22:08:31 +08:00
|
|
|
#
|
2007-07-06 22:09:45 +08:00
|
|
|
# This file is part of the GNU Binutils.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
2004-02-19 22:08:31 +08:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-07-06 22:09:45 +08:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2004-02-19 22:08:31 +08:00
|
|
|
# (at your option) any later version.
|
2007-07-06 22:09:45 +08:00
|
|
|
#
|
2004-02-19 22:08:31 +08:00
|
|
|
# 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.
|
2007-07-06 22:09:45 +08:00
|
|
|
#
|
2004-02-19 22:08:31 +08:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2007-07-06 22:09:45 +08:00
|
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
# MA 02110-1301, USA.
|
2004-02-19 22:08:31 +08:00
|
|
|
|
2020-07-06 14:45:35 +08:00
|
|
|
set old_LDFLAGS $LDFLAGS
|
2021-03-09 15:52:32 +08:00
|
|
|
if { [is_pecoff_format] } then {
|
|
|
|
set LDFLAGS "$LDFLAGS --image-base 0"
|
|
|
|
} elseif { [is_xcoff_format] } then {
|
2020-07-06 14:45:35 +08:00
|
|
|
set LDFLAGS "$LDFLAGS -bnogc"
|
|
|
|
}
|
|
|
|
|
2004-02-19 22:08:31 +08:00
|
|
|
run_dump_test data
|
2014-04-04 09:15:03 +08:00
|
|
|
run_dump_test fill
|
2017-07-19 20:11:59 +08:00
|
|
|
run_dump_test fill16
|
2020-12-24 13:26:23 +08:00
|
|
|
run_dump_test pr27100
|
2020-07-06 14:45:35 +08:00
|
|
|
|
|
|
|
set LDFLAGS $old_LDFLAGS
|