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
parent
3feed5b192
commit
dd5be66957
|
@ -53,7 +53,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Record compilation time
|
// Record compilation time
|
||||||
#define FACTOR_COMPILE_TIME __TIMESTAMP__
|
#define FACTOR_COMPILE_TIME __DATE__ " " __TIME__
|
||||||
|
|
||||||
// Detect target CPU type
|
// Detect target CPU type
|
||||||
#if defined(__arm__)
|
#if defined(__arm__)
|
||||||
|
|
Loading…
Reference in New Issue