* Added hooks to new dejagnu sky tests, removed old test from run.
[deliverable/binutils-gdb.git] / sim / testsuite / config / default.exp
1 # Simulator default dejagnu configuration file.
2
3 load_lib sim-defs.exp
4
5 global AS
6 if ![info exists AS] {
7 set AS [findfile $base_dir/../../gas/as-new $base_dir/../../gas/as-new \
8 [transform as]]
9 }
10
11 global ASFLAGS
12 if ![info exists ASFLAGS] {
13 set ASFLAGS ""
14 }
15
16 global CC
17 if ![info exists CC] {
18 set CC [findfile $base_dir/../../gcc/xgcc $base_dir/../../gcc/xgcc \
19 [transform gcc]]
20 }
21
22 global CFLAGS
23 if ![info exists CFLAGS] {
24 set CFLAGS ""
25 }
26
27 global LD
28 if ![info exists LD] {
29 set LD [findfile $base_dir/../../ld/ld-new $base_dir/../../ld/ld-new \
30 [transform ld]]
31 }
32
33 global LDFLAGS
34 if ![info exists LDFLAGS] {
35 set LDFLAGS ""
36 }
37
38 global SIM
39 if ![info exists SIM] {
40 set SIM [findfile $base_dir/../$arch/run $base_dir/../$arch/run \
41 [transform run]]
42 }
43
44 global SIMFLAGS
45 if ![info exists SIMFLAGS] {
46 set SIMFLAGS ""
47 }
48
49 sim_init
This page took 0.032412 seconds and 5 git commands to generate.