File tree Expand file tree Collapse file tree 10 files changed +2352
-0
lines changed Expand file tree Collapse file tree 10 files changed +2352
-0
lines changed Original file line number Diff line number Diff line change @@ -224,6 +224,13 @@ x86_64-unknown-haiku \
224224x86_64-unknown-hermit \
225225x86_64-unknown-l4re-uclibc \
226226x86_64-unknown-openbsd \
227+ armv7-wrs-vxworks \
228+ aarch64-wrs-vxworks \
229+ i686-wrs-vxworks \
230+ x86_64-wrs-vxworks \
231+ powerpc-wrs-vxworks \
232+ powerpc-wrs-vxworks-spe \
233+ powerpc64-wrs-vxworks \
227234"
228235
229236if [ " ${RUST} " = " nightly" ] && [ " ${OS} " = " linux" ]; then
Original file line number Diff line number Diff line change @@ -114,6 +114,12 @@ cfg_if! {
114114
115115 mod switch;
116116 pub use switch:: * ;
117+ } else if #[ cfg( target_os = "vxworks" ) ] {
118+ mod fixed_width_ints;
119+ pub use fixed_width_ints:: * ;
120+
121+ mod vxworks;
122+ pub use vxworks:: * ;
117123 } else if #[ cfg( unix) ] {
118124 mod fixed_width_ints;
119125 pub use fixed_width_ints:: * ;
Original file line number Diff line number Diff line change 1+ pub type c_char = u8 ;
2+ pub type c_long = i64 ;
3+ pub type c_ulong = u64 ;
Original file line number Diff line number Diff line change 1+ pub type c_char = u8 ;
2+ pub type c_long = i32 ;
3+ pub type c_ulong = u32 ;
Original file line number Diff line number Diff line change 1+ pub type c_long = i32 ;
2+ pub type c_ulong = u32 ;
You can’t perform that action at this time.
0 commit comments