We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfde6f5 commit 14483a6Copy full SHA for 14483a6
api/rs/slint/lib.rs
@@ -201,6 +201,9 @@ each instance will have their own instance of associated globals singletons.
201
#![cfg_attr(not(feature = "std"), no_std)]
202
#![allow(clippy::needless_doctest_main)] // We document how to write a main function
203
204
+#[cfg(target_env = "musl")]
205
+compile_error!("Compiling with MUSL is not supported by this crate.");
206
+
207
extern crate alloc;
208
209
#[cfg(not(feature = "compat-1-2"))]
0 commit comments