From: John Benediktsson Date: Thu, 22 Mar 2018 17:41:34 +0000 (-0700) Subject: vm: fix COMPILE-TIME to use __DATE__ and __TIME__ X-Git-Tag: 0.98~106 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=dd5be669572a6d0c1dd55f71c1b3a49adbb19939 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__. --- 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__)