mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 09:21:57 -05:00
AK: Re-enable execinfo for GNU Hurd
Adds an explicit check for Hurd due to previous regression.
This commit is contained in:
parent
0f72978fd1
commit
6403468f09
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
|||
#include <AK/StringBuilder.h>
|
||||
#include <AK/StringView.h>
|
||||
|
||||
#if (defined(AK_OS_LINUX) && defined(AK_LIBC_GLIBC)) || defined(AK_OS_BSD_GENERIC) || defined(AK_OS_SOLARIS) || defined(AK_OS_HAIKU)
|
||||
#if (defined(AK_OS_LINUX) && defined(AK_LIBC_GLIBC)) || defined(AK_OS_BSD_GENERIC) || defined(AK_OS_SOLARIS) || defined(AK_OS_HAIKU) || defined(AK_OS_GNU_HURD)
|
||||
# define EXECINFO_BACKTRACE
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue