From: Randolph Chung Date: Fri, 24 Mar 2006 23:49:56 +0000 (+0000) Subject: 2006-03-24 Randolph Chung X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7fc4b1a180d7ba54e71ca16c8edcc81fa6e3db93;p=binutils-gdb.git 2006-03-24 Randolph Chung * solib-som.c (link_map_start): Don't error out if there is not yet a link map. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d982e29246e..68a9181718d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2006-03-24 Randolph Chung + + * solib-som.c (link_map_start): Don't error out if there is + not yet a link map. + 2006-03-24 Daniel Jacobowitz * linux-nat.c (linux_ops_saved): New. diff --git a/gdb/solib-som.c b/gdb/solib-som.c index 3d027ccf70c..52c7367c47b 100644 --- a/gdb/solib-som.c +++ b/gdb/solib-som.c @@ -520,7 +520,7 @@ link_map_start (void) read_memory (addr, buf, 4); addr = extract_unsigned_integer (buf, 4); if (addr == 0) - error (_("Debugging dynamic executables loaded via the hpux8 dld.sl is not supported.")); + return 0; read_memory (addr, buf, 4); return extract_unsigned_integer (buf, 4);