Skip to content

Commit

Permalink
clang.mak: drop ccache
Browse files Browse the repository at this point in the history
It is no longer needed to call it explicitly.
It automatically wraps all compilers.
  • Loading branch information
stsp committed Jul 12, 2024
1 parent 071f8b3 commit 45ae2b3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions fdpp/clang.mak
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ CROSS_LD ?= ld.bfd
else
CROSS_LD ?= x86_64-linux-gnu-ld
endif
CCACHE ?= $(shell which ccache 2>/dev/null)
CC ?= $(CCACHE) clang
CXX = $(CCACHE) clang++
CC ?= clang
CXX = clang++
CLANG_VER := $(shell $(CXX) -v 2>&1 | head -n 1 | \
sed -E 's/.+ version ([^.]+)\.[^.]+\.[^ ]+.*/\1/')
FLEX = $(shell which flex 2>/dev/null)
Expand Down

0 comments on commit 45ae2b3

Please sign in to comment.