make: add nvcc info print (#5310)

This commit is contained in:
Johannes Gäßler 2024-02-03 20:15:13 +01:00 committed by GitHub
parent 3cc5ed353c
commit 3c0d25c475
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -553,8 +553,11 @@ $(info I CFLAGS: $(CFLAGS))
$(info I CXXFLAGS: $(CXXFLAGS))
$(info I NVCCFLAGS: $(NVCCFLAGS))
$(info I LDFLAGS: $(LDFLAGS))
$(info I CC: $(shell $(CC) --version | head -n 1))
$(info I CXX: $(shell $(CXX) --version | head -n 1))
$(info I CC: $(shell $(CC) --version | head -n 1))
$(info I CXX: $(shell $(CXX) --version | head -n 1))
ifdef LLAMA_CUBLAS
$(info I NVCC: $(shell $(NVCC) --version | tail -n 1))
endif # LLAMA_CUBLAS
$(info )
#