From: Jan Kratochvil Date: Wed, 11 Apr 2007 16:09:57 +0000 (+0000) Subject: * libunwind-frame.c (LIBUNWIND_SO): Use major version number for `.so'. X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=70f575ccc8d2ef399512be60131931dc16149149;p=deliverable%2Fbinutils-gdb.git * libunwind-frame.c (LIBUNWIND_SO): Use major version number for `.so'. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index eb7d253afa..8779944ee6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2007-04-11 Jan Kratochvil + + * libunwind-frame.c (LIBUNWIND_SO): Use major version number for `.so'. + 2007-04-11 Jan Kratochvil * gdbtypes.h (TYPE_FLAG_STUB_SUPPORTED, TYPE_STUB_SUPPORTED): New diff --git a/gdb/libunwind-frame.c b/gdb/libunwind-frame.c index 662a87fd11..66ffb8ea29 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));