From 03324f20286d03d1567cd6c8beda87e516416f0a Mon Sep 17 00:00:00 2001 From: kimocoder Date: Fri, 16 Aug 2019 17:28:01 +0200 Subject: [PATCH] Support reproducable builds by disabling DATE/TIME macros --- core/rtw_debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rtw_debug.c b/core/rtw_debug.c index 6ad11a9..4122e04 100644 --- a/core/rtw_debug.c +++ b/core/rtw_debug.c @@ -42,7 +42,7 @@ const char *rtw_log_level_str[] = { void dump_drv_version(void *sel) { RTW_PRINT_SEL(sel, "%s %s\n", DRV_NAME, DRIVERVERSION); - RTW_PRINT_SEL(sel, "build time: %s %s\n", __DATE__, __TIME__); + /* RTW_PRINT_SEL(sel, "build time: %s %s\n", __DATE__, __TIME__); */ } void dump_drv_cfg(void *sel)