build: add CONFIG_APP_REPRODUCIBLE_BUILD menuconfig option to produce reproducible binaries

This commit is contained in:
Fu Hanxi
2021-10-09 15:42:14 +08:00
parent a65de0ab1f
commit 9919b75ec1
8 changed files with 63 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ const __attribute__((section(".rodata_desc"))) esp_app_desc_t esp_app_desc = {
.secure_version = 0,
#endif
#ifdef CONFIG_APP_COMPILE_TIME_DATE
#if defined(CONFIG_APP_COMPILE_TIME_DATE) && !defined(CONFIG_APP_REPRODUCIBLE_BUILD)
.time = __TIME__,
.date = __DATE__,
#else