aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/build_info/build_info_static.h
blob: 75d3916e69ee599b57807936581b7f5ac223c56b (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