diff options
author | Ben Elliston <bje@gnu.org> | 2003-08-07 03:42:42 +0000 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2003-08-07 03:42:42 +0000 |
commit | d7b7156075df25716082174f6baf2ac0e163e939 (patch) | |
tree | e2c4f9afdb89cf1e6f082acf7c1a0aae0fd423a8 /baseboards/vx960.exp | |
parent | 8f0d1b58dbfb8b4e7ad5c14f21d65da05a364200 (diff) | |
download | dejagnu-d7b7156075df25716082174f6baf2ac0e163e939.zip dejagnu-d7b7156075df25716082174f6baf2ac0e163e939.tar.gz dejagnu-d7b7156075df25716082174f6baf2ac0e163e939.tar.bz2 |
Strip trailing semicolons from Tcl source files.
Diffstat (limited to 'baseboards/vx960.exp')
-rw-r--r-- | baseboards/vx960.exp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/baseboards/vx960.exp b/baseboards/vx960.exp index e25c79d..1c5d71e 100644 --- a/baseboards/vx960.exp +++ b/baseboards/vx960.exp @@ -3,27 +3,27 @@ set_board_info target_install {i960-vxworks5.1 i960-vxworks5.2} # Load the generic configuration for this board. This will define any # routines needed by the tool to communicate with the board. -load_generic_config "vxworks"; +load_generic_config "vxworks" # No multilib flags by default. -process_multilib_options ""; +process_multilib_options "" # The compiler used to build for this board. Note that this has nothing to do # with what compiler is tested when testing gcc. -set_board_info compiler "[find_gcc]"; +set_board_info compiler "[find_gcc]" # These are probably wrong, but at least it is configurable now. if { [board_info $board cpu] == "I960CA" } { - set_board_info cflags "-mca"; + set_board_info cflags "-mca" } else { - set_board_info cflags ""; + set_board_info cflags "" } # vxworks 5.1 needs the executable to be relinkable. -set_board_info ldflags "-nostdlib -r"; -set_board_info libs "-lgcc"; +set_board_info ldflags "-nostdlib -r" +set_board_info libs "-lgcc" # No linker script needed. -set_board_info ldscript ""; +set_board_info ldscript "" # GDB needs to use "target vxworks" to talk to the board. -set_board_info gdb_protocol "vxworks"; +set_board_info gdb_protocol "vxworks" |