diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-02-23 09:54:02 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-03-14 22:49:25 +0100 |
commit | 0007638b54f3741e5a5e09235fed1e96a511f245 (patch) | |
tree | 5ede76dd23d1a93eb259263b037eeebbcd27a446 /libubacktrace/backtrace.c | |
parent | d1e51157725a4defd46c298ce1026d0f5d48da3c (diff) |
libubacktrace: use libgcc_s.h
for consistency
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libubacktrace/backtrace.c')
-rw-r--r-- | libubacktrace/backtrace.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libubacktrace/backtrace.c b/libubacktrace/backtrace.c index fdd5981fa..0a72bae5e 100644 --- a/libubacktrace/backtrace.c +++ b/libubacktrace/backtrace.c @@ -20,6 +20,7 @@ * */ +#include <libgcc_s.h> #include <execinfo.h> #include <dlfcn.h> #include <stdlib.h> @@ -38,12 +39,12 @@ static _Unwind_Ptr (*unwind_getip) (struct _Unwind_Context *); static void backtrace_init (void) { - void *handle = dlopen ("libgcc_s.so.1", RTLD_LAZY); + void *handle = dlopen (LIBGCC_S_SO, RTLD_LAZY); if (handle == NULL || ((unwind_backtrace = dlsym (handle, "_Unwind_Backtrace")) == NULL) || ((unwind_getip = dlsym (handle, "_Unwind_GetIP")) == NULL)) { - printf("libgcc_s.so.1 must be installed for backtrace to work\n"); + printf(LIBGCC_S_SO " must be installed for backtrace to work\n"); abort(); } } |