Browse Source

This reverts commit ef5f4a8c80f8d652e5415d0fdb159dcf51af52d3:

2016-02-14  Steve Ellcey  <sellcey@mips.com>

	* baseboards/multi-sim.exp (dynamic_linker_flag): Check
	GCC_UNDER_TEST.
	* baseboards/multi-sim.exp (rpath_flags): Ditto.
dejagnu-1.6
Ben Elliston 11 years ago
parent
commit
7e0630a1b2
  1. 9
      ChangeLog
  2. 14
      baseboards/multi-sim.exp

9
ChangeLog

@ -1,3 +1,12 @@
2016-03-15 Ben Elliston <bje@gnu.org>
Revert this change:
2016-02-14 Steve Ellcey <sellcey@mips.com>
* baseboards/multi-sim.exp (dynamic_linker_flag): Check
GCC_UNDER_TEST.
* baseboards/multi-sim.exp (rpath_flags): Ditto.
2016-03-13 Ben Elliston <bje@gnu.org>
* lib/utils.exp: Whitespace fixes.

14
baseboards/multi-sim.exp

@ -42,12 +42,7 @@ load_base_board_description "basic-sim"
proc get_library_dirlist { args } {
global board
global GCC_UNDER_TEST
if [info exists GCC_UNDER_TEST] then {
set compiler $GCC_UNDER_TEST
} else {
set compiler "[board_info $board compiler]"
}
set compiler "[board_info $board compiler]"
set mflags "[board_info $board multilib_flags]"
set result [remote_exec host "$compiler $mflags --print-search-dirs"]
set regresult [regexp {(libraries: =)(\S*)} $result dummy1 dummy2 libdirlist]
@ -71,12 +66,7 @@ proc dynamic_linker_flag { args } {
proc rpath_flags { args } {
global board
global GCC_UNDER_TEST
if [info exists GCC_UNDER_TEST] then {
set compiler $GCC_UNDER_TEST
} else {
set compiler "[board_info $board compiler]"
}
set compiler "[board_info $board compiler]"
set mflags "[board_info $board multilib_flags] [libgloss_include_flags] [newlib_include_flags] [libgloss_link_flags] [libgloss_link_flags]"
set rpathflags ""
set gccpath [get_multilibs]

Loading…
Cancel
Save