blob: 9bf9939dd95da960de13a1d81e26afb74719ed83 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#if defined(__cplusplus)
extern "C" {
#endif
const char* GetCompilerVersion();
const char* GetCompilerFlags(); // "-std=c++14 -DNDEBUG -O2 -m64 ..."
const char* GetBuildInfo(); // Compiler version and flags
#if defined(__cplusplus)
}
#endif
|