Files
o3de/Code/Tools/CrashHandler/Platform/CrashHandler_mac.cpp
T
2021-06-23 10:55:22 -07:00

32 lines
625 B
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
// LY Base Crashpad Mac implementation
#include <CrashHandler.h>
#include <AzCore/PlatformIncl.h>
#include <AzCore/IO/SystemFile.h>
#include <mach-o/dyld.h>
namespace CrashHandler
{
const char* crashHandlerPath = "ToolsCrashUploader";
const char* CrashHandlerBase::GetCrashHandlerExecutableName() const
{
return crashHandlerPath;
}
void CrashHandlerBase::GetOSAnnotations(CrashHandlerAnnotations& annotations) const
{
annotations["os"] = "mac";
}
}