* libunwind-frame.c (LIBUNWIND_SO): Use major version number for `.so'.

This commit is contained in:
Jan Kratochvil 2007-04-11 16:09:57 +00:00
parent d77b680888
commit 70f575ccc8
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
* libunwind-frame.c (LIBUNWIND_SO): Use major version number for `.so'.
2007-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
* gdbtypes.h (TYPE_FLAG_STUB_SUPPORTED, TYPE_STUB_SUPPORTED): New

View File

@ -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));