diff options
author | WANG Rui <[email protected]> | 2024-01-17 12:43:00 +0800 |
---|---|---|
committer | Huacai Chen <[email protected]> | 2024-01-17 12:43:00 +0800 |
commit | f58b0abae839f06be9d791d16196922a4b281777 (patch) | |
tree | 7472e1a6133a019e03bfe7c44849c3bc21402c63 | |
parent | 2772ae4d66d17c6a8b4c167ddb660fc8d7972da5 (diff) |
scripts/min-tool-version.sh: Raise minimum clang version to 18.0.0 for loongarch
The existing mainline clang development version encounters difficulties
compiling the LoongArch kernel module. It is anticipated that this issue
will be resolved in the upcoming 18.0.0 release. To prevent user
confusion arising from broken builds, it is advisable to raise the
minimum required clang version for LoongArch to 18.0.0.
Suggested-by: Nathan Chancellor <[email protected]>
Reviewed-by: Nathan Chancellor <[email protected]>
Acked-by: Nick Desaulniers <[email protected]>
Link: https://github.com/ClangBuiltLinux/linux/issues/1941
Signed-off-by: Tiezhu Yang <[email protected]>
Signed-off-by: WANG Rui <[email protected]>
Signed-off-by: Huacai Chen <[email protected]>
-rwxr-xr-x | scripts/min-tool-version.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/min-tool-version.sh b/scripts/min-tool-version.sh index fd5ffdb81bab..1c6ab10dc69e 100755 --- a/scripts/min-tool-version.sh +++ b/scripts/min-tool-version.sh @@ -26,6 +26,8 @@ gcc) llvm) if [ "$SRCARCH" = s390 ]; then echo 15.0.0 + elif [ "$SRCARCH" = loongarch ]; then + echo 18.0.0 else echo 11.0.0 fi |