From 5b968e302a0de810bf2944cbdd52dda3c7ccfc98 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sun, 17 Mar 2024 06:57:00 -0400 Subject: [PATCH] Linux fix --- BeefySysLib/platform/posix/PosixCommon.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/BeefySysLib/platform/posix/PosixCommon.cpp b/BeefySysLib/platform/posix/PosixCommon.cpp index c8788d36..ad7e564c 100644 --- a/BeefySysLib/platform/posix/PosixCommon.cpp +++ b/BeefySysLib/platform/posix/PosixCommon.cpp @@ -578,6 +578,14 @@ BFP_EXPORT void BFP_CALLTYPE BfpSystem_Init(int version, BfpSystemInitFlags flag } } +BFP_EXPORT void BFP_CALLTYPE BfpSystem_InitCrashCatcher(BfpSystemInitFlags flags) +{ +} + +BFP_EXPORT void BFP_CALLTYPE BfpSystem_ShutdownCrashCatcher() +{ +} + BFP_EXPORT void BFP_CALLTYPE BfpSystem_SetCommandLine(int argc, char** argv) { char exePath[PATH_MAX] = { 0 };