build_info_static.h 261 B

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