aboutsummaryrefslogtreecommitdiff
path: root/libbutl/backtrace.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/backtrace.cxx')
-rw-r--r--libbutl/backtrace.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/libbutl/backtrace.cxx b/libbutl/backtrace.cxx
index 7a8d615..a66faa2 100644
--- a/libbutl/backtrace.cxx
+++ b/libbutl/backtrace.cxx
@@ -12,14 +12,17 @@
// With glibc linking with -rdynamic gives (non-static) function names.
// FreeBSD requires explicitly linking -lexecinfo.
//
+// Note that some libc implementation on Linux (most notably, musl), don't
+// support this, at least not out of the box.
+//
#ifndef BUILD2_BOOTSTRAP
-# if defined(__linux__) || \
+# if defined(__GLIBC__) || \
defined(__APPLE__) || \
defined(__FreeBSD__)
# define LIBBUTL_BACKTRACE
# endif
#else
-# if defined(__linux__) || \
+# if defined(__GLIBC__) || \
defined(__APPLE__)
# define LIBBUTL_BACKTRACE
# endif