hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/init/Kconfig
....@@ -47,6 +47,18 @@
4747 int
4848 default $(shell,$(srctree)/scripts/clang-version.sh $(CC))
4949
50
+config AS_IS_GNU
51
+ def_bool $(success,test "$(as-name)" = GNU)
52
+
53
+config AS_IS_LLVM
54
+ def_bool $(success,test "$(as-name)" = LLVM)
55
+
56
+config AS_VERSION
57
+ int
58
+ # Use clang version if this is the integrated assembler
59
+ default CLANG_VERSION if AS_IS_LLVM
60
+ default $(as-version)
61
+
5062 config LLD_VERSION
5163 int
5264 default $(shell,$(srctree)/scripts/lld-version.sh $(LD))