Browse Source

[Minor] Fix build on some systems

tags/3.7.2
Vsevolod Stakhov 6 months ago
parent
commit
79edca0b0a
No account linked to committer's email address
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      contrib/backward-cpp/backward.hpp

+ 6
- 0
contrib/backward-cpp/backward.hpp View File

@@ -379,7 +379,13 @@ typedef SSIZE_T ssize_t;

#if BACKWARD_HAS_UNWIND == 1

#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#include <unwind.h>
#undef _GNU_SOURCE
#else
#include <unwind.h>
#endif
// while gcc's unwind.h defines something like that:
// extern _Unwind_Ptr _Unwind_GetIP (struct _Unwind_Context *);
// extern _Unwind_Ptr _Unwind_GetIPInfo (struct _Unwind_Context *, int *);

Loading…
Cancel
Save