gentoo-ebuilds/dev-build/kbuild/files/kbuild-0.1.9998.3499-fix-CC.patch
Viorel Munteanu b1a1b5d418
Move {dev-util → dev-build}/kbuild
Closes: https://github.com/gentoo/gentoo/pull/34871
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
2024-01-17 20:27:38 +02:00

23 lines
504 B
Diff

A few files are compiled with gcc regardless of setting CC
This file seems to do some guesswork, override it with CC if set
Bug: https://bugs.gentoo.org/734302
--- a/kBuild/tools/GCC3.kmk
+++ b/kBuild/tools/GCC3.kmk
@@ -84,6 +84,14 @@
TOOL_GCC3_CXX += -fmessage-length=0
endif
+ifneq ($(CC),)
+ TOOL_GCC3_CC = $(CC)
+ TOOL_GCC3_LD = $(CC)
+endif
+ifneq ($(AR),)
+ TOOL_GCC3_AR = $(AR)
+endif
+
# General Properties used by kBuild
TOOL_GCC3_COBJSUFF ?= .o
TOOL_GCC3_CFLAGS ?=