Skip to content

Commit 95a3c8f

Browse files
committed
build: Fix compile failure in backtrace_posix.cc
Fix compile failure in backtrace_posix.c on AIX Fixes: #7539 PR-URL: #7544 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Brian White <[email protected]>
1 parent cd4dbf3 commit 95a3c8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/backtrace_posix.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <features.h>
55
#endif
66

7-
#if defined(__linux__) && !defined(__GLIBC__)
7+
#if defined(__linux__) && !defined(__GLIBC__) || defined(_AIX)
88
#define HAVE_EXECINFO_H 0
99
#else
1010
#define HAVE_EXECINFO_H 1

0 commit comments

Comments
 (0)