I have this code
#include <stdio.h>
int
main()
{
#ifdef __MINGW64_VERSION_MAJOR
printf("MinGW-w64 version: %i.%i.%i\n",
__MINGW64_VERSION_MAJOR,
__MINGW64_VERSION_MINOR,
__MINGW64_VERSION_BUGFIX);
#else
printf("Not compiled with MinGW-w64.\n");
#endif
return 0;
}
A request is that there is an addition of __MINGW64_VERSION_GIT_HASH or some
such so that I know which revision of the mingw-w64-crt I am working with.
Thoughts?
Thanks,
Tom
_______________________________________________
Mingw-w64-public mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public