mirror of
https://github.com/ComodoSecurity/openedr/
synced 2026-06-06 15:24:33 +00:00
64 lines
1.5 KiB
C++
64 lines
1.5 KiB
C++
/*
|
|
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License").
|
|
* You may not use this file except in compliance with the License.
|
|
* A copy of the License is located at
|
|
*
|
|
* http://aws.amazon.com/apache2.0
|
|
*
|
|
* or in the "license" file accompanying this file. This file is distributed
|
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
|
* express or implied. See the License for the specific language governing
|
|
* permissions and limitations under the License.
|
|
*/
|
|
|
|
#include <aws/core/Version.h>
|
|
#include <aws/core/VersionConfig.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Version
|
|
{
|
|
const char* GetVersionString()
|
|
{
|
|
return AWS_SDK_VERSION_STRING;
|
|
}
|
|
|
|
unsigned GetVersionMajor()
|
|
{
|
|
return AWS_SDK_VERSION_MAJOR;
|
|
}
|
|
|
|
unsigned GetVersionMinor()
|
|
{
|
|
return AWS_SDK_VERSION_MINOR;
|
|
}
|
|
|
|
unsigned GetVersionPatch()
|
|
{
|
|
return AWS_SDK_VERSION_PATCH;
|
|
}
|
|
|
|
|
|
const char* GetCompilerVersionString()
|
|
{
|
|
#define xstr(s) str(s)
|
|
#define str(s) #s
|
|
#if defined(_MSC_VER)
|
|
return "MSVC/" xstr(_MSC_VER);
|
|
#elif defined(__clang__)
|
|
return "Clang/" xstr(__clang_major__) "." xstr(__clang_minor__) "." xstr(__clang_patchlevel__);
|
|
#elif defined(__GNUC__)
|
|
return "GCC/" xstr(__GNUC__) "." xstr(__GNUC_MINOR__) "." xstr(__GNUC_PATCHLEVEL__);
|
|
#else
|
|
return "UnknownCompiler";
|
|
#endif
|
|
#undef str
|
|
#undef xstr
|
|
}
|
|
} //namespace Version
|
|
} //namespace Aws
|
|
|
|
|