File tree 3 files changed +6
-4
lines changed
src/unix/linux_like/linux
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 13
13
if [ " $OS " = " windows" ]; then
14
14
: " ${TARGET?The TARGET environment variable must be set.} "
15
15
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 "
18
18
else
19
19
rustup set profile minimal
20
- rustup update --force $toolchain
21
- rustup default $toolchain
20
+ rustup update --force " $toolchain "
21
+ rustup default " $toolchain "
22
22
fi
23
23
24
24
if [ -n " $TARGET " ]; then
Original file line number Diff line number Diff line change @@ -169,6 +169,7 @@ AT_GID
169
169
AT_HWCAP
170
170
AT_HWCAP2
171
171
AT_IGNORE
172
+ AT_MINSIGSTKSZ
172
173
AT_NOTELF
173
174
AT_NO_AUTOMOUNT
174
175
AT_NULL
Original file line number Diff line number Diff line change @@ -1821,6 +1821,7 @@ pub const AT_EXECFN: ::c_ulong = 31;
1821
1821
// defined in arch/<arch>/include/uapi/asm/auxvec.h but has the same value
1822
1822
// wherever it is defined.
1823
1823
pub const AT_SYSINFO_EHDR : :: c_ulong = 33 ;
1824
+ pub const AT_MINSIGSTKSZ : :: c_ulong = 51 ;
1824
1825
1825
1826
pub const GLOB_ERR : :: c_int = 1 << 0 ;
1826
1827
pub const GLOB_MARK : :: c_int = 1 << 1 ;
You can’t perform that action at this time.
0 commit comments