Skip to content

Commit 70d1f16

Browse files
committed
Auto merge of #1480 - gnzlbg:fix_build2, r=gnzlbg
Rename armv7-wrs-vxworks target
2 parents 4bd0c00 + 2742aaa commit 70d1f16

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

ci/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ x86_64-unknown-haiku \
224224
x86_64-unknown-hermit \
225225
x86_64-unknown-l4re-uclibc \
226226
x86_64-unknown-openbsd \
227-
armv7-wrs-vxworks \
227+
armv7-wrs-vxworks-eabihf \
228228
aarch64-wrs-vxworks \
229229
i686-wrs-vxworks \
230230
x86_64-wrs-vxworks \

src/lib.rs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@
1515
#![crate_name = "libc"]
1616
#![crate_type = "rlib"]
1717
#![cfg_attr(libc_deny_warnings, deny(warnings))]
18-
#![allow(bad_style, overflowing_literals, improper_ctypes, unknown_lints)]
19-
// FIXME: this is due to a rustc bug
20-
#![allow(redundant_semicolon)]
18+
#![allow(
19+
bad_style,
20+
overflowing_literals,
21+
improper_ctypes,
22+
unknown_lints,
23+
redundant_semicolon
24+
)]
2125
// Attributes needed when building as part of the standard library
2226
#![cfg_attr(
2327
feature = "rustc-dep-of-std",

0 commit comments

Comments
 (0)