File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1313if [ " $OS " = " windows" ]; then
1414 : " ${TARGET?The TARGET environment variable must be set.} "
1515 rustup set profile minimal
16- rustup update --force $toolchain -" $TARGET "
17- rustup default $toolchain -" $TARGET "
16+ rustup update --force " $toolchain -$TARGET "
17+ rustup default " $toolchain -$TARGET "
1818else
1919 rustup set profile minimal
20- rustup update --force $toolchain
21- rustup default $toolchain
20+ rustup update --force " $toolchain "
21+ rustup default " $toolchain "
2222fi
2323
2424if [ -n " $TARGET " ]; then
Original file line number Diff line number Diff line change @@ -169,6 +169,7 @@ AT_GID
169169AT_HWCAP
170170AT_HWCAP2
171171AT_IGNORE
172+ AT_MINSIGSTKSZ
172173AT_NOTELF
173174AT_NO_AUTOMOUNT
174175AT_NULL
Original file line number Diff line number Diff line change @@ -1821,6 +1821,7 @@ pub const AT_EXECFN: ::c_ulong = 31;
18211821// defined in arch/<arch>/include/uapi/asm/auxvec.h but has the same value
18221822// wherever it is defined.
18231823pub const AT_SYSINFO_EHDR : :: c_ulong = 33 ;
1824+ pub const AT_MINSIGSTKSZ : :: c_ulong = 51 ;
18241825
18251826pub const GLOB_ERR : :: c_int = 1 << 0 ;
18261827pub const GLOB_MARK : :: c_int = 1 << 1 ;
You can’t perform that action at this time.
0 commit comments