File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -127,10 +127,12 @@ macro_rules! rust_target_base {
127
127
/// Rust stable 1.47
128
128
/// * `larger_arrays` ([Tracking issue](https://github.com/rust-lang/rust/pull/74060))
129
129
=> Stable_1_47 => 1.47 ;
130
+ /// Rust stable 1.64
131
+ /// * `core_ffi_c` ([Tracking issue](https://github.com/rust-lang/rust/issues/94501))
132
+ => Stable_1_64 => 1.64 ;
130
133
/// Nightly rust
131
134
/// * `thiscall` calling convention ([Tracking issue](https://github.com/rust-lang/rust/issues/42202))
132
135
/// * `vectorcall` calling convention (no tracking issue)
133
- /// * `core_ffi_c` ([Tracking issue](https://github.com/rust-lang/rust/issues/94501))
134
136
=> Nightly => nightly;
135
137
) ;
136
138
}
@@ -234,10 +236,12 @@ rust_feature_def!(
234
236
Stable_1_47 {
235
237
=> larger_arrays;
236
238
}
239
+ Stable_1_64 {
240
+ => core_ffi_c;
241
+ }
237
242
Nightly {
238
243
=> thiscall_abi;
239
244
=> vectorcall_abi;
240
- => core_ffi_c;
241
245
}
242
246
) ;
243
247
Original file line number Diff line number Diff line change 1
- // bindgen-flags: --rust-target nightly --raw-line '#![cfg(feature = "nightly")]' --use-core --no-convert-floats
1
+ // bindgen-flags: --use-core --rust-target 1.64 --no-convert-floats
2
2
typedef char c_char ;
3
3
typedef double c_double ;
4
4
typedef float c_float ;
You can’t perform that action at this time.
0 commit comments