xen: Import cc-ifversion from Kbuild
authorAnthony PERARD <anthony.perard@citrix.com>
Wed, 4 Dec 2019 17:13:51 +0000 (17:13 +0000)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Thu, 30 Jan 2020 11:54:33 +0000 (11:54 +0000)
This is in preparation of importing Kbuild to build Xen. We won't be
able to include Config.mk so we will need a replacement for the macro
`cc-ifversion'.

This patch imports parts of "scripts/Kbuild.include" from Linux v5.4,
the macro cc-ifversion. It makes use of CONFIG_GCC_VERSION that
Kconfig now provides.

Since they are no other use of Xen's `cc-ifversion' macro, we can
remove it.

Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
Config.mk
xen/Rules.mk
xen/common/coverage/Makefile
xen/scripts/Kbuild.include [new file with mode: 0644]

index 35d66e5e121a6dcf00d669c8aa14a1f6613b4708..65649d6122d12be2ce66dfa9f29b308e077220b7 100644 (file)
--- a/Config.mk
+++ b/Config.mk
@@ -121,11 +121,6 @@ define cc-ver-check-closure
     endif
 endef
 
-# cc-ifversion: Check compiler version and take branch accordingly
-# Usage $(call cc-ifversion,lt,0x040700,string_if_y,string_if_n)
-cc-ifversion = $(shell [ $(call cc-ver,$(CC),$(1),$(2)) = "y" ] \
-                               && echo $(3) || echo $(4))
-
 # Require GCC v4.1+
 check-$(gcc) = $(call cc-ver-check,CC,0x040100,"Xen requires at least gcc-4.1")
 $(eval $(check-y))
index 8dc044a35774056d64152131e12154c6e5d4e8d9..2bd269bb8ac68f2984775d3f4b4f57a67a9cc368 100644 (file)
@@ -2,6 +2,7 @@
 -include $(BASEDIR)/include/config/auto.conf
 
 include $(XEN_ROOT)/Config.mk
+include $(BASEDIR)/scripts/Kbuild.include
 
 
 ifneq ($(origin crash_debug),undefined)
index 46c78d1086d6ba4380285be2baa1946f636b02d1..b509e51f960bbc2d690f24a547a6848382107d4c 100644 (file)
@@ -1,10 +1,10 @@
 obj-y += coverage.o
 ifneq ($(clang),y)
 obj-y += gcov_base.o gcov.o
-obj-y += $(call cc-ifversion,lt,0x040700, \
-               gcc_3_4.o, $(call cc-ifversion,lt,0x040900, \
-               gcc_4_7.o, $(call cc-ifversion,lt,0x050000, \
-               gcc_4_9.o, $(call cc-ifversion,lt,0x070000, \
+obj-y += $(call cc-ifversion,-lt,0407, \
+               gcc_3_4.o, $(call cc-ifversion,-lt,0409, \
+               gcc_4_7.o, $(call cc-ifversion,-lt,0500, \
+               gcc_4_9.o, $(call cc-ifversion,-lt,0700, \
                gcc_5.o, gcc_7.o))))
 else
 obj-y += llvm.o
diff --git a/xen/scripts/Kbuild.include b/xen/scripts/Kbuild.include
new file mode 100644 (file)
index 0000000..a5c462f
--- /dev/null
@@ -0,0 +1,7 @@
+# SPDX-License-Identifier: GPL-2.0
+####
+# kbuild: Generic definitions
+
+# cc-ifversion
+# Usage:  EXTRA_CFLAGS += $(call cc-ifversion, -lt, 0402, -O1)
+cc-ifversion = $(shell [ $(CONFIG_GCC_VERSION)0 $(1) $(2)000 ] && echo $(3) || echo $(4))