We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9628568 commit 4df231fCopy full SHA for 4df231f
setup.sh
@@ -37,6 +37,7 @@ if [[ ! -f /updated.2 ]]; then
37
bzip2 \
38
cgroup-tools \
39
curl \
40
+ dos2unix \
41
file \
42
flex \
43
g++ \
update_compilers/install_rust_compilers.sh
@@ -16,6 +16,9 @@ do_rust_install() {
16
if [[ ${IS_STD_LIB} -ne 0 ]]; then
17
rm -rf ${OPT}/${INSTALL}
18
fi
19
+ # TODO: remove once rust fixes nightly builds upstream
20
+ # workaround line ending issue in certain rust nightly archives
21
+ dos2unix install.sh
22
./install.sh --prefix=${OPT}/${INSTALL} --verbose --without=rust-docs
23
popd
24
rm -rf /tmp/${DIR}
0 commit comments