1994-06-21 22:15:04 +00:00
|
|
|
load_lib gas-defs.exp
|
|
|
|
|
|
|
|
global AS
|
|
|
|
if ![info exists AS] then {
|
1995-08-01 03:11:52 +00:00
|
|
|
set AS [findfile $base_dir/../as.new "../as.new" [transform as]]
|
|
|
|
}
|
1994-06-21 22:15:04 +00:00
|
|
|
|
1995-08-01 03:11:52 +00:00
|
|
|
global GASP
|
|
|
|
if ![info exists GASP] then {
|
|
|
|
set GASP [findfile $base_dir/../gasp.new "../gasp.new" [transform gasp]]
|
1994-06-21 22:15:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
global ASFLAGS
|
|
|
|
if ![info exists ASFLAGS] then {
|
|
|
|
set ASFLAGS ""
|
|
|
|
}
|
|
|
|
|
1995-08-01 03:11:52 +00:00
|
|
|
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 {}
|
|
|
|
}
|
|
|
|
|
1994-06-21 22:15:04 +00:00
|
|
|
gas_init
|