vm: fix COMPILE-TIME to use __DATE__ and __TIME__

Those are "time the preprocessor is run", not "date and time of the last
modification of the current source file" like __TIMESTAMP__.
paths
John Benediktsson 2018-03-22 10:41:34 -07:00
parent 3feed5b192
commit dd5be66957
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@
#endif
// Record compilation time
#define FACTOR_COMPILE_TIME __TIMESTAMP__
#define FACTOR_COMPILE_TIME __DATE__ " " __TIME__
// Detect target CPU type
#if defined(__arm__)