From 4b8205edd6e8980f89a55029e7c597761b94445c Mon Sep 17 00:00:00 2001 From: Shubham Kulkarni Date: Thu, 15 Oct 2020 19:24:57 +0530 Subject: [PATCH] esp_idf_version.h: Add __ASSEMBLER__ flag to fix build failure with assembly files --- components/esp_common/include/esp_idf_version.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/esp_common/include/esp_idf_version.h b/components/esp_common/include/esp_idf_version.h index 4ffbddc4b8..5eb6fbe0c4 100644 --- a/components/esp_common/include/esp_idf_version.h +++ b/components/esp_common/include/esp_idf_version.h @@ -41,6 +41,8 @@ extern "C" { ESP_IDF_VERSION_MINOR, \ ESP_IDF_VERSION_PATCH) +#ifndef __ASSEMBLER__ + /** * Return full IDF version string, same as 'git describe' output. * @@ -53,6 +55,8 @@ extern "C" { */ const char* esp_get_idf_version(void); +#endif + #ifdef __cplusplus } #endif