get_flags.mk -> get-flags.mk

This commit is contained in:
Jared Van Bortel 2023-12-13 12:05:01 -05:00
parent cacac25195
commit d870a9fd2c
2 changed files with 2 additions and 2 deletions

View file

@ -472,7 +472,7 @@ ggml-mpi.o: ggml-mpi.c ggml-mpi.h
endif # LLAMA_MPI endif # LLAMA_MPI
GF_CC := $(CC) GF_CC := $(CC)
include scripts/get_flags.mk include scripts/get-flags.mk
# combine build flags with cmdline overrides # combine build flags with cmdline overrides
override CFLAGS := $(MK_CPPFLAGS) $(CPPFLAGS) $(MK_CFLAGS) $(GF_CFLAGS) $(CFLAGS) override CFLAGS := $(MK_CPPFLAGS) $(CPPFLAGS) $(MK_CFLAGS) $(GF_CFLAGS) $(CFLAGS)
@ -484,7 +484,7 @@ override LDFLAGS := $(MK_LDFLAGS) $(LDFLAGS)
# identify CUDA host compiler # identify CUDA host compiler
ifdef LLAMA_CUBLAS ifdef LLAMA_CUBLAS
GF_CC := $(NVCC) $(NVCCFLAGS) 2>/dev/null .c -Xcompiler GF_CC := $(NVCC) $(NVCCFLAGS) 2>/dev/null .c -Xcompiler
include scripts/get_flags.mk include scripts/get-flags.mk
CUDA_CXXFLAGS := $(GF_CXXFLAGS) CUDA_CXXFLAGS := $(GF_CXXFLAGS)
endif endif