We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdad19d commit 68953fdCopy full SHA for 68953fd
src/runtime/Makefile
@@ -1,5 +1,6 @@
1
+GIT_COMMIT := $(shell cat version)
2
CC = gcc
-CFLAGS = -std=gnu99 -Os -D_FILE_OFFSET_BITS=64 -DGIT_COMMIT=\"${GIT_COMMIT}\" -T data_sections.ld -ffunction-sections -fdata-sections -Wl,--gc-sections -static -Wall -Werror
3
+CFLAGS = -std=gnu99 -Os -D_FILE_OFFSET_BITS=64 -DGIT_COMMIT=\"$(GIT_COMMIT)\" -T data_sections.ld -ffunction-sections -fdata-sections -Wl,--gc-sections -static -Wall -Werror
4
LIBS = -lsquashfuse -lsquashfuse_ll -lzstd -lz -lfuse3
5
6
all: runtime
0 commit comments