2004-02-20 23:31:10 +08:00
|
|
|
# Test ALIGN in a linker script.
|
|
|
|
# By Nathan Sidwell, CodeSourcery LLC
|
2006-09-20 19:35:11 +08:00
|
|
|
# Copyright 2004, 2005, 2006
|
2004-02-20 23:31:10 +08:00
|
|
|
# Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# This file 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 2 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
|
2005-05-12 15:32:09 +08:00
|
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
2004-02-20 23:31:10 +08:00
|
|
|
|
2004-04-08 08:51:37 +08:00
|
|
|
if [istarget "rs6000-*-aix*"] {
|
|
|
|
# Target maps .text and .data to other sections.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2005-02-18 04:57:01 +08:00
|
|
|
set testname "align1"
|
2004-02-20 23:31:10 +08:00
|
|
|
|
|
|
|
if ![ld_assemble $as $srcdir/$subdir/align.s tmpdir/align.o] {
|
|
|
|
unresolved $testname
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2006-09-20 19:35:11 +08:00
|
|
|
# Doesn't work on PECOFF, appears to be a genuine bug.
|
|
|
|
# mingw64 targets need to set the image base to 0 to avoid auto image-basing.
|
|
|
|
global LDFLAGS
|
|
|
|
set saved_LDFLAGS "$LDFLAGS"
|
|
|
|
if [istarget "*-*-mingw64*"] then {
|
|
|
|
set LDFLAGS "$LDFLAGS --image-base 0"
|
|
|
|
} else {
|
|
|
|
if [is_pecoff_format] {
|
2005-06-01 12:04:19 +08:00
|
|
|
global target_triplet
|
|
|
|
setup_xfail $target_triplet
|
2006-09-20 19:35:11 +08:00
|
|
|
}
|
2005-06-01 12:04:19 +08:00
|
|
|
}
|
|
|
|
|
2006-09-20 19:35:11 +08:00
|
|
|
if ![ld_simple_link $ld tmpdir/align "$LDFLAGS -T $srcdir/$subdir/align.t tmpdir/align.o"] {
|
2004-02-20 23:31:10 +08:00
|
|
|
fail $testname
|
|
|
|
} else {
|
|
|
|
pass $testname
|
|
|
|
}
|
2005-02-18 04:57:01 +08:00
|
|
|
|
2005-02-21 16:18:49 +08:00
|
|
|
if ![is_aout_format] {
|
2005-10-26 01:40:19 +08:00
|
|
|
# The z80-coff port defaults to a "binary" like output
|
|
|
|
# file format which does not include a data section.
|
|
|
|
setup_xfail "z80-*-coff"
|
2005-02-21 16:18:49 +08:00
|
|
|
run_dump_test align2a
|
2005-10-26 01:40:19 +08:00
|
|
|
setup_xfail "z80-*-coff"
|
2005-02-21 16:18:49 +08:00
|
|
|
run_dump_test align2b
|
|
|
|
}
|
2005-02-18 04:57:01 +08:00
|
|
|
run_dump_test align2c
|
2006-09-20 19:35:11 +08:00
|
|
|
set LDFLAGS "$saved_LDFLAGS"
|