~vcs-imports-ii/dejagnu/master

« back to all changes in this revision

Viewing changes to baseboards/generic-sim.exp

  • Committer: Ben Elliston
  • Date: 2018-12-09 05:38:56 UTC
  • Revision ID: git-v1:d5f3788c0634ca5a42419d9d2e153e1887d34cf2
        * baseboards/androideabi.exp: Remove unnecessary quotes and braces
        around variable expansions.
        * baseboards/basic-sid.exp: Likewise.
        * baseboards/cris-sim.exp: Likewise.
        * baseboards/generic-sim.exp: Likewise.
        * baseboards/mcore-moto-sim.exp: Likewise.
        * baseboards/multi-sim.exp: Likewise.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 
40
40
# No multilib flags are set by default.
41
41
if {[info exists env(DEJAGNU_SIM_MULTILIB_OPTIONS)]} {
42
 
    process_multilib_options "$env(DEJAGNU_SIM_MULTILIB_OPTIONS)"
 
42
    process_multilib_options $env(DEJAGNU_SIM_MULTILIB_OPTIONS)
43
43
} else {
44
44
    process_multilib_options ""
45
45
}
47
47
# The compiler used to build for this board. This has *nothing* to do
48
48
# with what compiler is tested if we're testing gcc.
49
49
if {[info exists env(DEJAGNU_SIM_GCC)]} {
50
 
    set_board_info compiler "$env(DEJAGNU_SIM_GCC)"
 
50
    set_board_info compiler $env(DEJAGNU_SIM_GCC)
51
51
} else {
52
52
    set_board_info compiler "[find_gcc]"
53
53
}
63
63
    set_board_info ldflags "[libgloss_link_flags] [newlib_link_flags]"
64
64
}
65
65
if {[info exists env(DEJAGNU_SIM_LDSCRIPT)]} {
66
 
    set_board_info ldscript "$env(DEJAGNU_SIM_LDSCRIPT)"
 
66
    set_board_info ldscript $env(DEJAGNU_SIM_LDSCRIPT)
67
67
}
68
68
if {[info exists env(DEJAGNU_SIM_SPECFILE)]} {
69
69
    set_board_info specfile "-specs=$env(DEJAGNU_SIM_SPECFILE)"
70
70
}
71
71
 
72
72
if {[info exists env(DEJAGNU_SIM_OPTIONS)]} {
73
 
    set_board_info sim,options "$env(DEJAGNU_SIM_OPTIONS)"
 
73
    set_board_info sim,options $env(DEJAGNU_SIM_OPTIONS)
74
74
}
75
75
 
76
76
if {[info exists env(DEJAGNU_SIM_BOARD_INFO)]} {