Skip to content

Commit

Permalink
src: unbreak build when compiling against uclibc
Browse files Browse the repository at this point in the history
It seems that it is possible with some toolchains for both `__GLIBC__`
and `__UCLIBC__` to be defined, confusing our "do we have execinfo.h?"
logic.

Assume that when `__UCLIBC__` is defined, we are dealing with a libc
that does not have execinfo.h.

Fixes: nodejs#8233
PR-URL: nodejs#8308
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
bnoordhuis authored and Fishrock123 committed Sep 8, 2016
1 parent 7d2e27e commit 850ce1d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/backtrace_posix.cc
Expand Up @@ -4,7 +4,9 @@
#include <features.h>
#endif

#if defined(__linux__) && !defined(__GLIBC__) || defined(_AIX)
#if defined(__linux__) && !defined(__GLIBC__) || \
defined(__UCLIBC__) || \
defined(_AIX)
#define HAVE_EXECINFO_H 0
#else
#define HAVE_EXECINFO_H 1
Expand Down

0 comments on commit 850ce1d

Please sign in to comment.