File tree 4 files changed +7
-4
lines changed
4 files changed +7
-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 @@ -288,6 +288,7 @@ pub const AT_BASE_PLATFORM: ::c_ulong = 24;
288
288
pub const AT_RANDOM : :: c_ulong = 25 ;
289
289
pub const AT_HWCAP2 : :: c_ulong = 26 ;
290
290
pub const AT_EXECFN : :: c_ulong = 31 ;
291
+ pub const AT_MINSIGSTKSZ : :: c_ulong = 51 ;
291
292
292
293
pub const PTHREAD_MUTEX_INITIALIZER : pthread_mutex_t = pthread_mutex_t {
293
294
value : 0 ,
Original file line number Diff line number Diff line change @@ -2220,6 +2220,7 @@ pub const AT_EXECFN: ::c_ulong = 31;
2220
2220
// defined in arch/<arch>/include/uapi/asm/auxvec.h but has the same value
2221
2221
// wherever it is defined.
2222
2222
pub const AT_SYSINFO_EHDR : :: c_ulong = 33 ;
2223
+ pub const AT_MINSIGSTKSZ : :: c_ulong = 51 ;
2223
2224
2224
2225
pub const GLOB_ERR : :: c_int = 1 << 0 ;
2225
2226
pub const GLOB_MARK : :: c_int = 1 << 1 ;
You can’t perform that action at this time.
0 commit comments