Skip to content

Commit 6c45fb9

Browse files
Add compile errors when built with unsupported wasm features (#1353)
### What Add compile errors when built with unsupported wasm features reference-types and multivalue. ### Why Rust 1.82 is likely to ship with target feature reference-types and multivalue enabled on wasm builds. These target features are not supported by the Soroban Env in the current protocol 21 or next planned protocol 22. It's not trivial for developers to disable target features because of how the rustc compiler only exposes the ability to buildstd with nightly. These compile errors will prevent someone from building .wasm files with the sdk when either of those target features are enabled. A Rust version check is not being done because it's actually easier to do a target feature check, and in the off chain somehow Rust 1.82 shipped without the target features enabled then the sdk could still be used with 1.82. Links: - https://discord.com/channels/897514728459468821/1289090985569026048 - stellar/rs-soroban-env#1469 - WebAssembly/tool-conventions#233 ### Releasing This change will be merged to `main` targeting v22, then should be backported to a v21 patch release immediately following.
1 parent 01f27c1 commit 6c45fb9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

soroban-sdk/src/lib.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@
4747
#[cfg(all(target_family = "wasm", feature = "testutils"))]
4848
compile_error!("'testutils' feature is not supported on 'wasm' target");
4949

50+
#[cfg(all(target_family = "wasm", target_feature = "reference-types"))]
51+
compile_error!("Compiler configuration is unsupported by Soroban Environment, because a Wasm target-feature is enabled that is not yet supported: reference-types. Use Rust 1.81 or older to get a compatible default configuration.");
52+
53+
#[cfg(all(target_family = "wasm", target_feature = "multivalue"))]
54+
compile_error!("Compiler configuration is unsupported by Soroban Environment, because a Wasm target-feature is enabled that is not yet supported: multivalue. Use Rust 1.81 or older to get a compatible default configuration.");
55+
5056
// When used in a no_std contract, provide a panic handler as one is required.
5157
#[cfg(all(not(feature = "alloc"), target_family = "wasm"))]
5258
#[panic_handler]

0 commit comments

Comments
 (0)