Commit 3d8cbcfd authored by Kenton Varda's avatar Kenton Varda Committed by GitHub

Merge pull request #353 from justincormack/musl

Only Glibc on Linux has execinfo.h
parents 656877e1 d605b498
......@@ -33,7 +33,7 @@
#endif
#include "io.h"
#if (__linux__ && !__ANDROID__) || __APPLE__
#if (__linux__ && __GLIBC__) || __APPLE__
#define KJ_HAS_BACKTRACE 1
#include <execinfo.h>
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment