diff options
| author | Stefan Boberg <[email protected]> | 2024-08-15 22:01:18 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-08-15 22:01:18 +0200 |
| commit | 50cb5ce35a9d58d4d156d3ba8f728d66b05b73e0 (patch) | |
| tree | 86a94e21f678aa5ed97387bb58237305116a67c6 /src | |
| parent | prevent new block in gc (#118) (diff) | |
| download | zen-50cb5ce35a9d58d4d156d3ba8f728d66b05b73e0.tar.xz zen-50cb5ce35a9d58d4d156d3ba8f728d66b05b73e0.zip | |
enable sentry on arm64 (#119)
* enable sentry on arm64
Diffstat (limited to 'src')
| -rw-r--r-- | src/zenserver/sentryintegration.cpp | 5 | ||||
| -rw-r--r-- | src/zenserver/sentryintegration.h | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/src/zenserver/sentryintegration.cpp b/src/zenserver/sentryintegration.cpp index 5d2b851d1..255030b2b 100644 --- a/src/zenserver/sentryintegration.cpp +++ b/src/zenserver/sentryintegration.cpp @@ -300,7 +300,10 @@ SentryIntegration::LogStartupInformation() } else { - ZEN_WARN("sentry_init returned failure! (error code: {})", m_SentryErrorCode); + ZEN_WARN( + "sentry_init returned failure! (error code: {}) note that sentry expects crashpad_handler to exist alongside the running " + "executable", + m_SentryErrorCode); } } } diff --git a/src/zenserver/sentryintegration.h b/src/zenserver/sentryintegration.h index 29f526714..40e22af4e 100644 --- a/src/zenserver/sentryintegration.h +++ b/src/zenserver/sentryintegration.h @@ -6,12 +6,7 @@ #include <zencore/zencore.h> #if !defined(ZEN_USE_SENTRY) -# if ZEN_PLATFORM_MAC && ZEN_ARCH_ARM64 -// vcpkg's sentry-native port does not support Arm on Mac. -# define ZEN_USE_SENTRY 0 -# else -# define ZEN_USE_SENTRY 1 -# endif +# define ZEN_USE_SENTRY 1 #endif #if ZEN_USE_SENTRY |