This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I'd like to add the commit hash to a file on every build to be used in firmware. Is there a way to do that with Code Composer Studio with a pre-build step? Here's how I do that in a Makefile for STM32 boards:
GIT_COMMIT_HASH := $(shell git rev-parse --short HEAD) # Check if there are any modified or untracked files included in this build. Ignore the gitcommit.h file. MODIFIED_OR_UNTRACKED := $(shell git status --porcelain | grep -E "(\.c|\.h|\.ld)$$" | grep -v "gitcommit.h" | wc -l) BUILD_STATUS := $(if $(filter 0,$(MODIFIED_OR_UNTRACKED)),clean,dirty)
Hello,
I have not tried this myself. However if is an action that you can do from a system console, then you should be able to do this with a pre-build step.