Skip to content

Commit

Permalink
Revert "remove ccache from config.mk"
Browse files Browse the repository at this point in the history
This reverts commit aa38875.
  • Loading branch information
gtxaspec committed May 7, 2024
1 parent 11e0777 commit 9508004
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ HOSTCC = $(call os_x_before, 10, 5, "cc", "gcc")
HOSTCFLAGS += $(call os_x_before, 10, 4, "-traditional-cpp")
HOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress")
else
HOSTCC = gcc
HOSTCC = $(CCACHE) gcc
endif

ifeq ($(HOSTOS),cygwin)
Expand Down Expand Up @@ -140,13 +140,13 @@ binutils-version = $(shell $(SHELL) $(SRCTREE)/tools/binutils-version.sh $(AS))
#
# Include the make variables (CC, etc...)
#
AS = $(CROSS_COMPILE)as
AS = $(CCACHE) $(CROSS_COMPILE)as

# Always use GNU ld
LD = $(shell if $(CROSS_COMPILE)ld.bfd -v > /dev/null 2>&1; \
then echo "$(CROSS_COMPILE)ld.bfd"; else echo "$(CROSS_COMPILE)ld"; fi;)

CC = $(CROSS_COMPILE)gcc
CC = $(CCACHE) $(CROSS_COMPILE)gcc
CPP = $(CC) -E
AR = $(CROSS_COMPILE)ar
NM = $(CROSS_COMPILE)nm
Expand Down

0 comments on commit 9508004

Please sign in to comment.