From c941006a9156cc456ab18671b40574414dc4896c Mon Sep 17 00:00:00 2001 From: jjohnstn Date: Thu, 5 Aug 2004 20:37:56 +0000 Subject: [PATCH] 2004-08-05 Jeff Johnston * libunwind-frame.c (LIBUNWIND_SO): Change to be of form: libunwind-xxxx.so" where xxxx is UNW_TARGET. --- gdb/ChangeLog | 1 - gdb/libunwind-frame.c | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7ecacf8ba6..3ed9cbd553 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -677,7 +677,6 @@ * Makefile.in (CONFIG_CLEAN): Delete duplicate definition. ->>>>>>> 1.6211 2004-07-28 Andrew Cagney * PROBLEMS: Mention threads/1650. diff --git a/gdb/libunwind-frame.c b/gdb/libunwind-frame.c index 3462625f3e..fd953d2bd9 100644 --- a/gdb/libunwind-frame.c +++ b/gdb/libunwind-frame.c @@ -45,10 +45,6 @@ static int libunwind_initialized; static struct gdbarch_data *libunwind_descr_handle; -#ifndef LIBUNWIND_SO -#define LIBUNWIND_SO "libunwind.so" -#endif - /* Required function pointers from libunwind. */ static int (*unw_get_reg_p) (unw_cursor_t *, unw_regnum_t, unw_word_t *); static int (*unw_get_fpreg_p) (unw_cursor_t *, unw_regnum_t, unw_fpreg_t *); @@ -75,6 +71,10 @@ struct libunwind_frame_cache #define STRINGIFY2(name) #name #define STRINGIFY(name) STRINGIFY2(name) +#ifndef LIBUNWIND_SO +#define LIBUNWIND_SO "libunwind-" STRINGIFY(UNW_TARGET) ".so" +#endif + static char *get_reg_name = STRINGIFY(UNW_OBJ(get_reg)); static char *get_fpreg_name = STRINGIFY(UNW_OBJ(get_fpreg)); static char *get_saveloc_name = STRINGIFY(UNW_OBJ(get_save_loc)); -- 2.11.0