mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
368886ac46
binutils/testsuite/ 2010-07-14 H.J. Lu <hongjiu.lu@intel.com> * config/default.exp (binutils_assemble): Use default_binutils_assemble_flags. (binutils_assemble_flags): New. * lib/utils-lib.exp (default_binutils_assemble): Renamed to ... (default_binutils_assemble_flags): This. Add asflags and pass it to target_assemble. (run_dump_test): Support assembler flags. * binutils-all/i386/compressed-1.s: New. * binutils-all/i386/compressed-1a.d: Likewise. * binutils-all/i386/compressed-1b.d: Likewise. * binutils-all/i386/compressed-1c.d: Likewise. * binutils-all/i386/i386.exp: Likewise. * binutils-all/x86-64/compressed-1.s: Likewise. * binutils-all/x86-64/compressed-1a.d: Likewise. * binutils-all/x86-64/compressed-1b.d: Likewise. * binutils-all/x86-64/compressed-1c.d: Likewise. * binutils-all/x86-64/x86-64.exp: Likewise. gas/testsuite/ 2010-07-14 H.J. Lu <hongjiu.lu@intel.com> * config/default.exp (ADDR2LINE): New. (ADDR2LINEFLAGS): Likewise. * gas/i386/i386.exp: Run dw2-compress-2 and x86-64-dw2-compress-2. * gas/i386/dw2-compress-2.d: New. * gas/i386/dw2-compress-2.s: Likewise. * gas/i386/x86-64-dw2-compress-2.d: Likewise. * gas/i386/x86-64-dw2-compress-2.s: Likewise. * lib/gas-defs.exp (run_dump_test): Support addr2line as dump program. (slurp_options): Allow numbers in options.
58 lines
1.1 KiB
Plaintext
58 lines
1.1 KiB
Plaintext
load_lib gas-defs.exp
|
|
|
|
global AS
|
|
if ![info exists AS] then {
|
|
set AS [findfile $base_dir/../as-new "../as-new" [transform as]]
|
|
}
|
|
|
|
global ASFLAGS
|
|
if ![info exists ASFLAGS] then {
|
|
set ASFLAGS ""
|
|
}
|
|
|
|
if ![info exists OBJDUMP] then {
|
|
set OBJDUMP [findfile $base_dir/../../binutils/objdump \
|
|
$base_dir/../../binutils/objdump \
|
|
[transform objdump]]
|
|
}
|
|
|
|
if ![info exists OBJDUMPFLAGS] then {
|
|
set OBJDUMPFLAGS {}
|
|
}
|
|
|
|
if ![info exists NM] then {
|
|
set NM [findfile $base_dir/../../binutils/nm-new \
|
|
$base_dir/../../binutils/nm-new \
|
|
[transform nm]]
|
|
}
|
|
|
|
if ![info exists NMFLAGS] then {
|
|
set NMFLAGS {}
|
|
}
|
|
|
|
if ![info exists OBJCOPY] then {
|
|
set OBJCOPY [findfile $base_dir/../../binutils/objcopy]
|
|
}
|
|
|
|
if ![info exists OBJCOPYFLAGS] then {
|
|
set OBJCOPYFLAGS {}
|
|
}
|
|
|
|
if ![info exists READELF] then {
|
|
set READELF [findfile $base_dir/../../binutils/readelf]
|
|
}
|
|
|
|
if ![info exists READELFFLAGS] then {
|
|
set READELFFLAGS {}
|
|
}
|
|
|
|
if ![info exists ADDR2LINE] then {
|
|
set ADDR2LINE [findfile $base_dir/../../binutils/addr2line]
|
|
}
|
|
|
|
if ![info exists ADDR2LINEFLAGS] then {
|
|
set ADDR2LINEFLAGS {}
|
|
}
|
|
|
|
gas_init
|