diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-08-18 12:07:49 -0700 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2014-08-18 12:07:49 -0700 |
commit | 1cbf50779e15893c7801a0332d9e67908a6a7556 (patch) | |
tree | a575d50833dac50a4cf9e0eb3ebb6c236268bb6d | |
parent | bf0fae198aeccc83fc9cc53a3318d58320ee2655 (diff) | |
download | gdb-1cbf50779e15893c7801a0332d9e67908a6a7556.zip gdb-1cbf50779e15893c7801a0332d9e67908a6a7556.tar.gz gdb-1cbf50779e15893c7801a0332d9e67908a6a7556.tar.bz2 |
boards/fission.exp: Explicitly pass -ggnu-pubnames for clang.
* boards/fission.exp: Explicitly pass -ggnu-pubnames for clang.
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/boards/fission.exp | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index b9197ad..29defab 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2014-08-18 David Blaikie <dblaikie@gmail.com> + + * boards/fission.exp: Explicitly pass -ggnu-pubnames for clang. + 2014-08-18 Joel Brobecker <brobecker@adacore.com> * gdb.dwarf2/data-loc.exp: Remove second DW_AT_upper bound diff --git a/gdb/testsuite/boards/fission.exp b/gdb/testsuite/boards/fission.exp index 0947502..9c111ba 100644 --- a/gdb/testsuite/boards/fission.exp +++ b/gdb/testsuite/boards/fission.exp @@ -27,7 +27,9 @@ set_board_info compiler "[find_gcc]" # This requires a relatively recent version of gcc (>4.7) and gold # for the linker. -set_board_info debug_flags "-gdwarf-4 -gsplit-dwarf -fdebug-types-section -Wl,--gdb-index" +# Note: -ggnu-pubnames is required for Gold to build .gdb_index, and while +# -gsplit-dwarf implies -ggnu-pubnames for gcc, it doesn't for clang. +set_board_info debug_flags "-gdwarf-4 -gsplit-dwarf -ggnu-pubnames -fdebug-types-section -Wl,--gdb-index" # This is needed otherwise dejagnu tries to rsh to host "fission". Blech. # Double blech: set_board_info only sets the value if not already set. |