From dd5be669572a6d0c1dd55f71c1b3a49adbb19939 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Thu, 22 Mar 2018 10:41:34 -0700 Subject: [PATCH] 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__. --- vm/master.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/master.hpp b/vm/master.hpp index 8a3bcf4367..4c87f74b97 100644 --- a/vm/master.hpp +++ b/vm/master.hpp @@ -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__) -- 2.34.1