make: Trim IDF_VER to fit a 32-bit field

Closes: https://github.com/espressif/esp-idf/issues/3131
pull/3306/head
Konstantin Kondrashov 2019-03-13 20:01:28 +08:00
rodzic edb0374b9d
commit 725f0a7545
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -270,10 +270,11 @@ endif
# If we have `version.txt` then prefer that for extracting IDF version
ifeq ("$(wildcard ${IDF_PATH}/version.txt)","")
IDF_VER := $(shell cd ${IDF_PATH} && git describe --always --tags --dirty)
IDF_VER_T := $(shell cd ${IDF_PATH} && git describe --always --tags --dirty)
else
IDF_VER := `cat ${IDF_PATH}/version.txt`
IDF_VER_T := `cat ${IDF_PATH}/version.txt`
endif
IDF_VER := $(shell echo "$(IDF_VER_T)" | cut -c 1-31)
# Set default LDFLAGS
EXTRA_LDFLAGS ?=