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 Mar 21, 2024
1 parent 2214c3b commit 41478db
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 @@ -3,7 +3,11 @@
# Contributor: Mateusz Mikuła <mati865@gmail.com
# Contributor: Philippe Renon <philippe_renon@yahoo.fr>

_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 41478db

Please sign in to comment.