Skip to content

Commit

Permalink
[fix](build) aarch64 compilation fix # (#25443)
Browse files Browse the repository at this point in the history
Issue: #25442

Compilation to include execinfo when building on aarch64
  • Loading branch information
Nitin-Kashyap authored and pull[bot] committed Dec 12, 2023
1 parent 540782d commit 2719712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/common/stack_trace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include "vec/common/demangle.h"
#include "vec/common/hex.h"

#if USE_UNWIND
#if USE_UNWIND && defined(__x86_64__)
#include <libunwind.h>
#else
#include <execinfo.h>
Expand Down

0 comments on commit 2719712

Please sign in to comment.