Merge pull request #9683
Some checks are pending
ci/gh-actions/cli / macOS (brew) (push) Waiting to run
ci/gh-actions/cli / Windows (MSYS2) (push) Waiting to run
ci/gh-actions/cli / Debian 10 (push) Waiting to run
ci/gh-actions/cli / Ubuntu 20.04 (push) Waiting to run
ci/gh-actions/cli / Ubuntu 22.04 (push) Waiting to run
ci/gh-actions/cli / Ubuntu 20.04 (libwallet) (push) Waiting to run
ci/gh-actions/cli / Ubuntu 20.04 (tests) (push) Blocked by required conditions
ci/gh-actions/cli / source archive (push) Waiting to run
ci/gh-actions/depends / Cross-Mac aarch64 (push) Waiting to run
ci/gh-actions/depends / ARMv8 Android (push) Waiting to run
ci/gh-actions/depends / ARM v8 (push) Waiting to run
ci/gh-actions/depends / ARMv7 Android (push) Waiting to run
ci/gh-actions/depends / ARM v7 (push) Waiting to run
ci/gh-actions/depends / i686 Linux (push) Waiting to run
ci/gh-actions/depends / RISCV 64bit (push) Waiting to run
ci/gh-actions/depends / Cross-Mac x86_64 (push) Waiting to run
ci/gh-actions/depends / x86_64 Freebsd (push) Waiting to run
ci/gh-actions/depends / x86_64 Linux (push) Waiting to run
ci/gh-actions/depends / Win64 (push) Waiting to run

133298d Fix linking error with libunwind when build for FreeBSD with GCC, by preferring easylogging++ when GCC is being used (WHR)
This commit is contained in:
tobtoht 2025-01-18 11:11:47 +00:00
commit 94f7efd53f
No known key found for this signature in database
GPG key ID: E45B10DD027D2472

View file

@ -26,7 +26,7 @@
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#if !defined __GNUC__ || defined __MINGW32__ || defined __MINGW64__ || defined __ANDROID__ || defined __FreeBSD__
#if !defined __GNUC__ || defined __clang__ || defined __MINGW32__ || defined __MINGW64__ || defined __ANDROID__
#define USE_UNWIND
#else
#define ELPP_FEATURE_CRASH_LOG 1