diff options
| author | Mukesh Kumar Chaurasiya (IBM) <mkchauras@gmail.com> | 2026-07-08 13:54:51 +0530 |
|---|---|---|
| committer | Madhavan Srinivasan <maddy@linux.ibm.com> | 2026-07-31 16:57:48 +0530 |
| commit | e299147cdc8e19c6421a6b7863dc82a35b09d967 (patch) | |
| tree | 65173b56554164cca88925e64972cf24a0597049 /scripts | |
| parent | 13244c0a40139fe66c4c5c5655f4d732a6002957 (diff) | |
| download | linux-e299147cdc8e19c6421a6b7863dc82a35b09d967.tar.gz linux-e299147cdc8e19c6421a6b7863dc82a35b09d967.zip | |
rust/powerpc: Set min rustc version for powerpc
Minimum `rustc` version required for powerpc is 1.95 as some critical
features required for compiling rust code for kernel are not there.
For example Stable inline asm support which got merged in 1.95.
Link: https://github.com/rust-lang/rust/pull/147996
Signed-off-by: Mukesh Kumar Chaurasiya (IBM) <mkchauras@gmail.com>
Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
Link: https://patch.msgid.link/20260708082454.1254320-5-mkchauras@gmail.com
Diffstat (limited to 'scripts')
| -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 031f2192b390..99bfdcaa3396 100755 --- a/scripts/min-tool-version.sh +++ b/scripts/min-tool-version.sh @@ -33,6 +33,8 @@ llvm) rustc) if [ "$SRCARCH" = "s390" ]; then echo 1.96.0 + elif [ "$ARCH" = powerpc ]; then + echo 1.95.0 else echo 1.85.0 fi |
