aboutsummaryrefslogtreecommitdiff
path: root/gdb/libunwind-frame.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2007-04-11 16:09:57 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2007-04-11 16:09:57 +0000
commit70f575ccc8d2ef399512be60131931dc16149149 (patch)
tree242cf53ebd5335b768b7a252b1a981a4689281a7 /gdb/libunwind-frame.c
parentd77b680888b9cfdc3a4822dbebb1d2b07a92060f (diff)
downloadgdb-70f575ccc8d2ef399512be60131931dc16149149.zip
gdb-70f575ccc8d2ef399512be60131931dc16149149.tar.gz
gdb-70f575ccc8d2ef399512be60131931dc16149149.tar.bz2
* libunwind-frame.c (LIBUNWIND_SO): Use major version number for `.so'.
Diffstat (limited to 'gdb/libunwind-frame.c')
-rw-r--r--gdb/libunwind-frame.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/libunwind-frame.c b/gdb/libunwind-frame.c
index 662a87f..66ffb8e 100644
--- a/gdb/libunwind-frame.c
+++ b/gdb/libunwind-frame.c
@@ -73,7 +73,9 @@ struct libunwind_frame_cache
#define STRINGIFY(name) STRINGIFY2(name)
#ifndef LIBUNWIND_SO
-#define LIBUNWIND_SO "libunwind-" STRINGIFY(UNW_TARGET) ".so"
+/* Use the stable ABI major version number. `libunwind-ia64.so' is a link time
+ only library, not a runtime one. */
+#define LIBUNWIND_SO "libunwind-" STRINGIFY(UNW_TARGET) ".so.7"
#endif
static char *get_reg_name = STRINGIFY(UNW_OBJ(get_reg));