plugin-version.h 593 B

123456789101112131415161718
  1. #include "configargs.h"
  2. #define GCCPLUGIN_VERSION_MAJOR 9
  3. #define GCCPLUGIN_VERSION_MINOR 3
  4. #define GCCPLUGIN_VERSION_PATCHLEVEL 0
  5. #define GCCPLUGIN_VERSION (GCCPLUGIN_VERSION_MAJOR*1000 + GCCPLUGIN_VERSION_MINOR)
  6. static char basever[] = "9.3.0";
  7. static char datestamp[] = "20200408";
  8. static char devphase[] = "";
  9. static char revision[] = "";
  10. /* FIXME plugins: We should make the version information more precise.
  11. One way to do is to add a checksum. */
  12. static struct plugin_gcc_version gcc_version = {basever, datestamp,
  13. devphase, revision,
  14. configuration_arguments};