Lines Matching +full:gcc +full:- +full:mingw +full:- +full:w64
4 set -ex
8 if [ -n "$TOOLCHAIN" ]; then
12 # https://github.com/rust-lang/rust/issues/103673 contains related information.
14 *android*) toolchain=nightly-2022-10-09;;
21 rustup update --force $toolchain-"$TARGET"
22 rustup default $toolchain-"$TARGET"
25 rustup update --force $toolchain
29 if [ -n "$TARGET" ]; then
34 if [ -n "$INSTALL_RUST_SRC" ]; then
35 echo "Install rust-src"
36 rustup component add rust-src
42 choco install mingw --x86 --force
45 echo "Find GCC libraries"
46 gcc -print-search-dirs
47 /usr/bin/find "C:\ProgramData\Chocolatey" -name "crt2*"
48 /usr/bin/find "C:\ProgramData\Chocolatey" -name "dllcrt2*"
49 /usr/bin/find "C:\ProgramData\Chocolatey" -name "libmsvcrt*"
51 if [ -n "$ARCH_BITS" ]; then
52 echo "Fix MinGW"
54 …cp -f "/C/ProgramData/Chocolatey/lib/mingw/tools/install/mingw$ARCH_BITS/$ARCH-w64-mingw32/lib/$i"…
60 command -v rustc
61 command -v cargo
62 command -v rustup
63 rustc -Vv
64 cargo -V
65 rustup -Vv
71 until [ $n -ge $N ]
73 if cargo generate-lockfile; then