Skip to content

Commit

Permalink
rust: set _bootstrapping=no for all architectures (not just aarch64)
Browse files Browse the repository at this point in the history
when _bootstrapping=no, the rust build is configured to use the local rust for stage 0.
stage 0 will use the installed MSYS2 rust (must be the latest version...).

when _bootstrapping=yes, the build is configured to download and extract the previous rust version.
in this case, the official rust build will be used which kind of defeats the point (?)
  • Loading branch information
filnet committed Dec 8, 2023
1 parent 6706672 commit ddf5cb2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mingw-w64-rust/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
# Contributor: Philippe Renon <[email protected]>

_realname=rust
_bootstrapping=yes
# when _bootstrapping=no, the rust build is configured to use the local rust for stage 0
# stage 0 will use the installed MSYS2 rust (hopefully the latest version...)
# when _bootstrapping=yes, the build is configured to download and extract the previous rust version
# in this case, the official rust build will be used which kind of defeats the point (?)
_bootstrapping=no
if [[ $MINGW_PACKAGE_PREFIX == *-clang-aarch64 ]]; then
_bootstrapping=no
fi
Expand Down

0 comments on commit ddf5cb2

Please sign in to comment.