]> git.proxmox.com Git - mirror_edk2.git/commitdiff
EmbeddedPkg/TimeBaseLib: Add macros to get build year/month/day
authorPete Batard <pete@akeo.ie>
Fri, 24 Jul 2020 16:37:42 +0000 (17:37 +0100)
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Mon, 3 Aug 2020 11:58:15 +0000 (11:58 +0000)
These can be used, for instance, to automate the population of an SMBIOS
Type 0 BIOS Release Date when building a UEFI firmware (which is how we
plan to use these macros for the Raspberry Pi platform).

These macros should work for any compiler that follows ISO/IEC 9899, but
we add a check for the compiler we have tested to be on the safe side.

Note that we decided against adding a #error or #warn for compilers that
haven't been validated, as we don't want to introduce breakage for people
who may already be using the header with something else than gcc, MSVC or
Clang. Instead, we expect those to send a patch that adds their compiler
to the list, once they have tested the macros there.

Signed-off-by: Pete Batard <pete@akeo.ie>
Reviewed-by: Leif Lindholm <leif@nuviainc.com>
EmbeddedPkg/Include/Library/TimeBaseLib.h

index 4103c89b38913c3b54b9df1bacc0e0da51d2c62f..ee2f191d985b0deaa71e8927e6e97e792d4e08b4 100644 (file)
 \r
 #include <Uefi/UefiBaseType.h>\r
 \r
+//\r
+// Convenience macros to obtain a build date\r
+//\r
+// These macros should work for any compiler that follows ISO/IEC 9899,\r
+// in which case __DATE__ is defined as a "Mmm dd yyyy" 11 chars string,\r
+// but add an explicit filter for compilers that have been validated.\r
+//\r
+#if (defined(__GNUC__) || defined(_MSC_VER) || defined(__clang__))\r
+#define TIME_BUILD_YEAR  (__DATE__[7] == '?' ? 1900 \\r
+          : (((__DATE__[7] - '0') * 1000 )          \\r
+          + (__DATE__[8] - '0') * 100               \\r
+          + (__DATE__[9] - '0') * 10                \\r
+          + __DATE__[10] - '0'))\r
+#define TIME_BUILD_MONTH ( __DATE__ [2] == '?' ? 1  \\r
+          : __DATE__ [2] == 'n' ? (                 \\r
+            __DATE__ [1] == 'a' ? 1 : 6)            \\r
+          : __DATE__ [2] == 'b' ? 2                 \\r
+          : __DATE__ [2] == 'r' ? (                 \\r
+            __DATE__ [0] == 'M' ? 3 : 4)            \\r
+          : __DATE__ [2] == 'y' ? 5                 \\r
+          : __DATE__ [2] == 'l' ? 7                 \\r
+          : __DATE__ [2] == 'g' ? 8                 \\r
+          : __DATE__ [2] == 'p' ? 9                 \\r
+          : __DATE__ [2] == 't' ? 10                \\r
+          : __DATE__ [2] == 'v' ? 11                \\r
+          : 12)\r
+#define TIME_BUILD_DAY ( __DATE__[4] == '?' ? 1     \\r
+          : ((__DATE__[4] == ' ' ? 0 :              \\r
+            ((__DATE__[4] - '0') * 10))             \\r
+          + __DATE__[5] - '0'))\r
+#endif\r
+\r
 // Define EPOCH (1970-JANUARY-01) in the Julian Date representation\r
 #define EPOCH_JULIAN_DATE                               2440588\r
 \r