fall back to Boost::stacktrace_basic if Boost::stacktrace_backtrace is not available #40
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Debian/Ubuntu 以外の環境 (FreeBSD や RedHat 系 Linux ディストリビューション) では、
標準提供されているパッケージでは Boost::stacktrace_backtrace が使えないことが多いため、
使えない環境では Boost::stacktrace_basic を使うようにする変更です。
また、 takatori を使用するモジュールが、自身の CMakeLists.txt で (takatori が依存している) Boost;;stacktrace_backtrace への依存を明示的に指定しないとビルドが通らない状態だったので、 takatori が export する Config ファイルに、 takatori が選択した Boost::stacktrace のライブラリへの依存を指定するように修正しました。
もともとは、コンパイラに G++ 以外を使用する場合に Boost::stacktrace_noop を使うようにされていましたが、
https://www.boost.org/doc/libs/1_65_0/doc/html/stacktrace/configuration_and_build.html によれば
とのことですので、
変更しました。