reqwest icon indicating copy to clipboard operation
reqwest copied to clipboard

rustup download hangs in armv7 docker container running on an arm64 Linux

Open djc opened this issue 1 year ago • 1 comments

As explained in https://github.com/rust-lang/rustup/issues/3122.

rustup has two download backends, one based on curl and one based on reqwest:

https://github.com/rust-lang/rustup/blob/master/download/src/lib.rs

Minimal reproduction:

FROM arm32v7/ubuntu:16.04

RUN apt-get update && apt-get -y install curl

RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --verbose \
  --default-host armv7-unknown-linux-gnueabihf

djc avatar Mar 06 '24 13:03 djc

https://github.com/rust-lang/rustup/issues/4189 provides a similar case with armv6l.

rami3l avatar Feb 18 '25 02:02 rami3l