Skip to content

Commit fde2b1b

Browse files
committed
Make the wasm_c_abi future compat warning a hard error
This is the next step in getting rid of the broken C abi for wasm32-unknown-unknown.
1 parent eedc229 commit fde2b1b

File tree

8 files changed

+11
-54
lines changed

8 files changed

+11
-54
lines changed

compiler/rustc_lint/messages.ftl

-3
Original file line numberDiff line numberDiff line change
@@ -975,6 +975,3 @@ lint_use_let_underscore_ignore_suggestion = use `let _ = ...` to ignore the expr
975975
976976
lint_variant_size_differences =
977977
enum variant is more than three times larger ({$largest} bytes) than the next largest
978-
979-
lint_wasm_c_abi =
980-
older versions of the `wasm-bindgen` crate will be incompatible with future versions of Rust; please update to `wasm-bindgen` v0.2.88

compiler/rustc_lint/src/early/diagnostics.rs

-1
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,6 @@ pub(super) fn decorate_lint(
431431
BuiltinLintDiag::UnusedCrateDependency { extern_crate, local_crate } => {
432432
lints::UnusedCrateDependency { extern_crate, local_crate }.decorate_lint(diag)
433433
}
434-
BuiltinLintDiag::WasmCAbi => lints::WasmCAbi.decorate_lint(diag),
435434
BuiltinLintDiag::IllFormedAttributeInput { suggestions } => {
436435
lints::IllFormedAttributeInput {
437436
num_suggestions: suggestions.len(),

compiler/rustc_lint/src/lints.rs

-4
Original file line numberDiff line numberDiff line change
@@ -2568,10 +2568,6 @@ pub(crate) struct UnusedCrateDependency {
25682568
pub local_crate: Symbol,
25692569
}
25702570

2571-
#[derive(LintDiagnostic)]
2572-
#[diag(lint_wasm_c_abi)]
2573-
pub(crate) struct WasmCAbi;
2574-
25752571
#[derive(LintDiagnostic)]
25762572
#[diag(lint_ill_formed_attribute_input)]
25772573
pub(crate) struct IllFormedAttributeInput {

compiler/rustc_lint_defs/src/builtin.rs

-39
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ declare_lint_pass! {
143143
UNUSED_VARIABLES,
144144
USELESS_DEPRECATED,
145145
WARNINGS,
146-
WASM_C_ABI,
147146
// tidy-alphabetical-end
148147
]
149148
}
@@ -4643,44 +4642,6 @@ declare_lint! {
46434642
};
46444643
}
46454644

4646-
declare_lint! {
4647-
/// The `wasm_c_abi` lint detects crate dependencies that are incompatible
4648-
/// with future versions of Rust that will emit spec-compliant C ABI.
4649-
///
4650-
/// ### Example
4651-
///
4652-
/// ```rust,ignore (needs extern crate)
4653-
/// #![deny(wasm_c_abi)]
4654-
/// ```
4655-
///
4656-
/// This will produce:
4657-
///
4658-
/// ```text
4659-
/// error: the following packages contain code that will be rejected by a future version of Rust: wasm-bindgen v0.2.87
4660-
/// |
4661-
/// note: the lint level is defined here
4662-
/// --> src/lib.rs:1:9
4663-
/// |
4664-
/// 1 | #![deny(wasm_c_abi)]
4665-
/// | ^^^^^^^^^^
4666-
/// ```
4667-
///
4668-
/// ### Explanation
4669-
///
4670-
/// Rust has historically emitted non-spec-compliant C ABI. This has caused
4671-
/// incompatibilities between other compilers and Wasm targets. In a future
4672-
/// version of Rust this will be fixed and therefore dependencies relying
4673-
/// on the non-spec-compliant C ABI will stop functioning.
4674-
pub WASM_C_ABI,
4675-
Deny,
4676-
"detects dependencies that are incompatible with the Wasm C ABI",
4677-
@future_incompatible = FutureIncompatibleInfo {
4678-
reason: FutureIncompatibilityReason::FutureReleaseErrorReportInDeps,
4679-
reference: "issue #71871 <https://github.com/rust-lang/rust/issues/71871>",
4680-
};
4681-
crate_level_only
4682-
}
4683-
46844645
declare_lint! {
46854646
/// The `uncovered_param_in_projection` lint detects a violation of one of Rust's orphan rules for
46864647
/// foreign trait implementations that concerns the use of type parameters inside trait associated

compiler/rustc_lint_defs/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,6 @@ pub enum BuiltinLintDiag {
784784
extern_crate: Symbol,
785785
local_crate: Symbol,
786786
},
787-
WasmCAbi,
788787
IllFormedAttributeInput {
789788
suggestions: Vec<String>,
790789
},

compiler/rustc_metadata/messages.ftl

+3
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,9 @@ metadata_unsupported_abi =
290290
metadata_unsupported_abi_i686 =
291291
ABI not supported by `#[link(kind = "raw-dylib")]` on i686
292292
293+
metadata_wasm_c_abi =
294+
older versions of the `wasm-bindgen` crate are incompatible with current versions of Rust; please update to `wasm-bindgen` v0.2.88
295+
293296
metadata_wasm_import_form =
294297
wasm import module must be of the form `wasm_import_module = "string"`
295298

compiler/rustc_metadata/src/creader.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -1039,12 +1039,7 @@ impl<'a, 'tcx> CrateLoader<'a, 'tcx> {
10391039
// Make a point span rather than covering the whole file
10401040
let span = krate.spans.inner_span.shrink_to_lo();
10411041

1042-
self.sess.psess.buffer_lint(
1043-
lint::builtin::WASM_C_ABI,
1044-
span,
1045-
ast::CRATE_NODE_ID,
1046-
BuiltinLintDiag::WasmCAbi,
1047-
);
1042+
self.sess.dcx().emit_err(errors::WasmCAbi { span });
10481043
}
10491044
}
10501045

compiler/rustc_metadata/src/errors.rs

+7
Original file line numberDiff line numberDiff line change
@@ -732,3 +732,10 @@ pub struct ImportNameTypeRaw {
732732
#[primary_span]
733733
pub span: Span,
734734
}
735+
736+
#[derive(Diagnostic)]
737+
#[diag(metadata_wasm_c_abi)]
738+
pub(crate) struct WasmCAbi {
739+
#[primary_span]
740+
pub span: Span,
741+
}

0 commit comments

Comments
 (0)