-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
re-enable ultimate stack traces for backward-cpp on linux (#67)
During the transition to Conan and CMake, we lost the configuration necessary for ultimate stack traces to be recorded on Linux platforms. This only works on Linux, so we need to conditionally link the extra libraries.
- Loading branch information
1 parent
6922cde
commit 01712fd
Showing
3 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
#ifdef __linux__ | ||
#define BACKWARD_HAS_BFD 1 | ||
#endif | ||
#include "backward.hpp" | ||
#include <gtest/gtest.h> | ||
|
||
|