Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
1008 B
Diff
38 lines
1008 B
Diff
diff --git a/Makefile b/Makefile
|
|
index 6fedcffba..3385836c4 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -271,8 +271,8 @@ export quiet Q KBUILD_VERBOSE
|
|
# Look for make include files relative to root of kernel src
|
|
MAKEFLAGS += --include-dir=$(srctree)
|
|
|
|
-HOSTCC = gcc
|
|
-HOSTCXX = g++
|
|
+HOSTCC = cc
|
|
+HOSTCXX = c++
|
|
HOSTCFLAGS :=
|
|
HOSTCXXFLAGS :=
|
|
# We need some generic definitions
|
|
@@ -289,7 +289,7 @@ MAKEFLAGS += -rR
|
|
# Make variables (CC, etc...)
|
|
|
|
AS = $(CROSS_COMPILE)as
|
|
-CC = $(CROSS_COMPILE)gcc
|
|
+CC = $(CROSS_COMPILE)cc
|
|
LD = $(CC) -nostdlib
|
|
CPP = $(CC) -E
|
|
AR = $(CROSS_COMPILE)ar
|
|
diff --git a/scripts/Makefile.IMA b/scripts/Makefile.IMA
|
|
index f155108d7..185257064 100644
|
|
--- a/scripts/Makefile.IMA
|
|
+++ b/scripts/Makefile.IMA
|
|
@@ -39,7 +39,7 @@ ifndef HOSTCC
|
|
HOSTCC = cc
|
|
endif
|
|
AS = $(CROSS_COMPILE)as
|
|
-CC = $(CROSS_COMPILE)gcc
|
|
+CC = $(CROSS_COMPILE)cc
|
|
LD = $(CC) -nostdlib
|
|
CPP = $(CC) -E
|
|
AR = $(CROSS_COMPILE)ar
|