diff options
author | Tom Tromey <tromey@redhat.com> | 2013-01-09 17:21:36 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-01-09 17:21:36 +0000 |
commit | b2259038ba4e56f7b9e09f4e909596ef2d795b40 (patch) | |
tree | ff9b7520adcd9f92a9854aa4c537b795f86d2ec0 /gdb/configure.ac | |
parent | 679af3685c25fdebc0b661746a451e802ef56ea1 (diff) | |
download | gdb-b2259038ba4e56f7b9e09f4e909596ef2d795b40.zip gdb-b2259038ba4e56f7b9e09f4e909596ef2d795b40.tar.gz gdb-b2259038ba4e56f7b9e09f4e909596ef2d795b40.tar.bz2 |
* config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
* configure: Rebuild.
* configure.ac: Add somread.o to the build if BFD has SOM
support.
* somread.c: Include som/aout.h, not syms.h.
(som_symtab_read): Use som_external_symbol_dictionary_record.
Unpack records manually.
(_initialize_somread): Declare.
Diffstat (limited to 'gdb/configure.ac')
-rw-r--r-- | gdb/configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/configure.ac b/gdb/configure.ac index de096b8..e501766 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -2034,6 +2034,13 @@ if test $gdb_cv_var_macho = yes; then CONFIG_OBS="$CONFIG_OBS machoread.o" fi +# Add SOM support to GDB, but only if BFD includes it. +GDB_AC_CHECK_BFD([for SOM support in BFD], gdb_cv_var_som, + [bfd_som_attach_aux_hdr (NULL, 0, NULL)], som.h) +if test $gdb_cv_var_som = yes; then + CONFIG_OBS="$CONFIG_OBS somread.o" +fi + # Add any host-specific objects to GDB. CONFIG_OBS="${CONFIG_OBS} ${gdb_host_obs}" |