Skip to content

Commit 5e4113e

Browse files
mhdawsonFishrock123
authored andcommitted
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 <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Brian White <mscdex@mscdex.net>
1 parent b0da07a commit 5e4113e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)